Add a couple of TODOs

This commit is contained in:
Manu Cornet 2021-12-14 08:03:18 +00:00
parent fdfada2f02
commit 101c08534a
1 changed files with 2 additions and 0 deletions

View File

@ -54,6 +54,7 @@ function workspace_grid:navigate(direction)
local r = self.rows
-- Don't cycle.
-- TODO: Add option for cycling.
-- Top row
if (i < c) and (direction == "up") then return true end
-- Left column
@ -72,6 +73,7 @@ function workspace_grid:navigate(direction)
local j = action[direction]
-- Switch tags on all screens at the same time.
-- TODO: Add option to switch per-screen.
for s in screen do
t = s.tags[j]
if t then t:view_only() end