use c:jump_to instead of client.jumpto

This commit is contained in:
cmertz 2016-08-10 13:02:02 +02:00
parent 4ef524d76e
commit f5f8998d0c
2 changed files with 2 additions and 2 deletions

View File

@ -1091,7 +1091,7 @@ function client.run_or_raise(cmd, matcher, merge)
local c = client.iterate(matcher, start)() local c = client.iterate(matcher, start)()
if c then if c then
client.jumpto(c, merge) c:jump_to(merge)
else else
-- client not found, spawn it -- client not found, spawn it
spawn(cmd) spawn(cmd)

View File

@ -54,7 +54,7 @@ end
function urgent.jumpto(merge) function urgent.jumpto(merge)
local c = client.urgent.get() local c = client.urgent.get()
if c then if c then
client.jumpto(c, merge) c:jump_to(merge)
end end
end end