File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -136,8 +136,8 @@ should return the fine adjustment (default 1)."
136
136
(?r resize-window--reset-windows " Resize - reset window layout (save state)" nil )
137
137
(?w resize-window--cycle-window-positive " Resize - cycle window" nil )
138
138
(?W resize-window--cycle-window-negative " Resize - cycle window" nil )
139
- (?2 resize-window--split-window-below " Split window horizontally" nil )
140
- (?3 resize-window--split-window-right " Slit window vertically" nil )
139
+ (?2 resize-window--split-window-below " Split window horizontally (save state) " nil )
140
+ (?3 resize-window--split-window-right " Slit window vertically (save state) " nil )
141
141
(?0 resize-window--delete-window " Delete window (save state)" nil )
142
142
(?k resize-window--kill-other-windows " Kill other windows (save state)" nil )
143
143
(?y resize-window--restore-windows " (when state) Restore window configuration" nil )
@@ -365,11 +365,13 @@ ACTION is a symbol of value 'kill or 'open."
365
365
366
366
(defun resize-window--split-window-below ()
367
367
" Split the window vertically."
368
+ (resize-window--window-push)
368
369
(split-window-below )
369
370
(resize-window--add-backgrounds))
370
371
371
372
(defun resize-window--split-window-right ()
372
373
" Split the window horizontally."
374
+ (resize-window--window-push)
373
375
(split-window-right )
374
376
(resize-window--add-backgrounds))
375
377
You can’t perform that action at this time.
0 commit comments