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 @@ -142,8 +142,8 @@ should return the fine adjustment (default 1)."
142
142
(?r resize-window--reset-windows " Resize - reset window layout (save state)" nil )
143
143
(?w resize-window--cycle-window-positive " Resize - cycle window" nil )
144
144
(?W resize-window--cycle-window-negative " Resize - cycle window" nil )
145
- (?2 resize-window--split-window-below " Split window horizontally" nil )
146
- (?3 resize-window--split-window-right " Slit window vertically" nil )
145
+ (?2 resize-window--split-window-below " Split window horizontally (save state) " nil )
146
+ (?3 resize-window--split-window-right " Slit window vertically (save state) " nil )
147
147
(?0 resize-window--delete-window " Delete window (save state)" nil )
148
148
(?k resize-window--kill-other-windows " Kill other windows (save state)" nil )
149
149
(?y resize-window--restore-windows " (when state) Restore window configuration" nil )
@@ -372,11 +372,13 @@ ACTION is a symbol of value 'kill or 'open."
372
372
373
373
(defun resize-window--split-window-below ()
374
374
" Split the window vertically."
375
+ (resize-window--window-push)
375
376
(split-window-below )
376
377
(resize-window--add-backgrounds))
377
378
378
379
(defun resize-window--split-window-right ()
379
380
" Split the window horizontally."
381
+ (resize-window--window-push)
380
382
(split-window-right )
381
383
(resize-window--add-backgrounds))
382
384
You can’t perform that action at this time.
0 commit comments