4
4
5
5
-- Bindings for the tilings.
6
6
defbindings (" WTiling" , {
7
- bdoc (" Split current frame vertically ." ),
7
+ bdoc (" Split current into rows ." ),
8
8
kpress (META .. " S" , " WTiling.split_at(_, _sub, 'bottom', true)" ),
9
9
10
10
bdoc (" Go to frame above/below current frame." ),
@@ -18,7 +18,7 @@ defbindings("WTiling", {
18
18
submap (META .. " K" , {
19
19
kpress (" Tab" , " ioncore.goto_next(_sub, 'left')" ),
20
20
21
- bdoc (" Split current frame horizontally ." ),
21
+ bdoc (" Split current into columns ." ),
22
22
kpress (" S" , " WTiling.split_at(_, _sub, 'right', true)" ),
23
23
24
24
bdoc (" Destroy current frame." ),
@@ -39,9 +39,9 @@ defctxmenu("WTiling", "Tiling", {
39
39
menuentry (" Destroy frame" ,
40
40
" WTiling.unsplit_at(_, _sub)" ),
41
41
42
- menuentry (" Split vertically " ,
42
+ menuentry (" Into rows " ,
43
43
" WTiling.split_at(_, _sub, 'bottom', true)" ),
44
- menuentry (" Split horizontally " ,
44
+ menuentry (" Into columns " ,
45
45
" WTiling.split_at(_, _sub, 'right', true)" ),
46
46
47
47
menuentry (" Flip" , " WTiling.flip_at(_, _sub)" ),
@@ -61,9 +61,9 @@ defctxmenu("WTiling", "Tiling", {
61
61
}),
62
62
63
63
submenu (" At root" , {
64
- menuentry (" Split vertically " ,
64
+ menuentry (" Into rows " ,
65
65
" WTiling.split_top(_, 'bottom')" ),
66
- menuentry (" Split horizontally " ,
66
+ menuentry (" Into columns " ,
67
67
" WTiling.split_top(_, 'right')" ),
68
68
menuentry (" Flip" , " WTiling.flip_at(_)" ),
69
69
menuentry (" Transpose" , " WTiling.transpose_at(_)" ),
0 commit comments