awful.client: rename focus and swap bydirection

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-10-24 20:31:18 +02:00
parent 4f1273794b
commit bf5001337c
1 changed files with 8 additions and 2 deletions

View File

@ -34,6 +34,7 @@ data.marked = {}
urgent = {}
focus = {}
focus.history = {}
swap = {}
-- User hooks
hooks.user.create('marked')
@ -292,7 +293,7 @@ end
--- Focus a client by the given direction.
-- @param dir The direction, can be either "up", "down", "left" or "right".
-- @param c Optional client.
function focusbydirection(dir, c)
function focus.bydirection(dir, c)
local sel = c or capi.client.focus
if sel then
local target = get_client_in_direction(dir, sel)
@ -304,6 +305,11 @@ function focusbydirection(dir, c)
end
end
function focusbydirection(dir, c)
util.deprecate()
return focus.bydirection(dir, c)
end
function focusbyidx(i, c)
util.deprecate()
return focus.byidx(i, c)
@ -322,7 +328,7 @@ end
--- Swap a client with another client in the given direction
-- @param dir The direction, can be either "up", "down", "left" or "right".
-- @param c Optional client.
function swapbydirection(dir, c)
function swap.bydirection(dir, c)
local sel = c or capi.client.focus
if sel then
local target = get_client_in_direction(dir, sel)