emacs - Rebind C-x 2 and 3
This commit is contained in:
parent
9d796f51fa
commit
1ea748bdfc
1 changed files with 9 additions and 0 deletions
|
@ -43,6 +43,15 @@
|
|||
;; Set frame title
|
||||
(setq frame-title-format "%b (%m)")
|
||||
|
||||
;; Rebind C-x 2 and 3
|
||||
(global-set-key (kbd "C-x 2")
|
||||
(lambda ()
|
||||
(interactive)
|
||||
(select-window (split-window-vertically))))
|
||||
(global-set-key (kbd "C-x 3")
|
||||
(lambda ()
|
||||
(interactive)
|
||||
(select-window (split-window-horizontally))))
|
||||
|
||||
;; Default frame size
|
||||
(setq initial-frame-alist
|
||||
|
|
Loading…
Reference in a new issue