Skip to content

Commit

Permalink
Changing the vert/hor verbiage in etc/cfg_notion3_tiling.lua
Browse files Browse the repository at this point in the history
Trying to resolve an ambiguity by renaming "vertically" as "into
rows" and "horizontally" as "into columns".
  • Loading branch information
kristopolous committed Jun 14, 2020
1 parent 71eeb21 commit 82df420
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions etc/cfg_notion3_tiling.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

-- Bindings for the tilings.
defbindings("WTiling", {
bdoc("Split current frame vertically."),
bdoc("Split current into rows."),
kpress(META.."S", "WTiling.split_at(_, _sub, 'bottom', true)"),

bdoc("Go to frame above/below current frame."),
Expand All @@ -18,7 +18,7 @@ defbindings("WTiling", {
submap(META.."K", {
kpress("Tab", "ioncore.goto_next(_sub, 'left')"),

bdoc("Split current frame horizontally."),
bdoc("Split current into columns."),
kpress("S", "WTiling.split_at(_, _sub, 'right', true)"),

bdoc("Destroy current frame."),
Expand All @@ -39,9 +39,9 @@ defctxmenu("WTiling", "Tiling", {
menuentry("Destroy frame",
"WTiling.unsplit_at(_, _sub)"),

menuentry("Split vertically",
menuentry("Into rows",
"WTiling.split_at(_, _sub, 'bottom', true)"),
menuentry("Split horizontally",
menuentry("Into columns",
"WTiling.split_at(_, _sub, 'right', true)"),

menuentry("Flip", "WTiling.flip_at(_, _sub)"),
Expand All @@ -61,9 +61,9 @@ defctxmenu("WTiling", "Tiling", {
}),

submenu("At root", {
menuentry("Split vertically",
menuentry("Into rows",
"WTiling.split_top(_, 'bottom')"),
menuentry("Split horizontally",
menuentry("Into columns",
"WTiling.split_top(_, 'right')"),
menuentry("Flip", "WTiling.flip_at(_)"),
menuentry("Transpose", "WTiling.transpose_at(_)"),
Expand Down

0 comments on commit 82df420

Please sign in to comment.