Add awful.tag.swap

This commit is contained in:
Emmanuel Lepage Vallee 2014-10-13 15:19:14 -04:00
parent d76e20bbce
commit dfaef973c3
1 changed files with 12 additions and 0 deletions

View File

@ -61,6 +61,18 @@ function tag.move(new_index, target_tag)
end end
end end
--- Swap 2 tags
-- @param tag1 The first tag
-- @param tag2 The second tag
function tag.swap(tag1,tag2)
local idx1, idx2 = tag.getidx(tag1),tag.getidx(tag2)
local src2, src1 = tag.getscreen(tag2),tag.getscreen(tag1)
tag.setscreen(tag2,src1)
tag.move(idx1,tag2)
tag.setscreen(tag1,scr2)
tag.move(idx2,tag1)
end
--- Add a tag. --- Add a tag.
-- @param name The tag name, a string -- @param name The tag name, a string
-- @param props The tags properties, a table -- @param props The tags properties, a table