implement unmark command

This commit is contained in:
koebi
2013-07-16 00:33:14 +02:00
committed by Michael Stapelberg
parent 35aec2f038
commit 88671986f4
7 changed files with 127 additions and 7 deletions

View File

@ -32,6 +32,7 @@ state INITIAL:
'split' -> SPLIT
'floating' -> FLOATING
'mark' -> MARK
'unmark' -> UNMARK
'resize' -> RESIZE
'rename' -> RENAME
'nop' -> NOP
@ -177,6 +178,13 @@ state MARK:
mark = string
-> call cmd_mark($mark)
# unmark [mark]
state UNMARK:
end
-> call cmd_unmark($mark)
mark = string
-> call cmd_unmark($mark)
# resize
state RESIZE:
way = 'grow', 'shrink'