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 )
@@ -374,11 +374,13 @@ ACTION is a symbol of value 'kill or 'open."
374
374
375
375
(defun resize-window--split-window-below ()
376
376
" Split the window vertically."
377
+ (resize-window--window-push)
377
378
(split-window-below )
378
379
(resize-window--add-backgrounds))
379
380
380
381
(defun resize-window--split-window-right ()
381
382
" Split the window horizontally."
383
+ (resize-window--window-push)
382
384
(split-window-right )
383
385
(resize-window--add-backgrounds))
384
386
You can’t perform that action at this time.
0 commit comments