Add some bindings when runing in screen

This commit is contained in:
nemunaire 2017-05-19 14:48:20 +02:00
parent 07bb522b64
commit 2a062472f3
1 changed files with 4 additions and 0 deletions

View File

@ -3,9 +3,13 @@
;; Move between windnow
(global-set-key [C-left] 'windmove-left)
(global-set-key (kbd "M-O d") 'windmove-left)
(global-set-key [C-right] 'windmove-right)
(global-set-key (kbd "M-O c") 'windmove-right)
(global-set-key [C-up] 'windmove-up)
(global-set-key (kbd "M-O a") 'windmove-up)
(global-set-key [C-down] 'windmove-down)
(global-set-key (kbd "M-O b") 'windmove-down)
;; Compile file
(global-set-key (kbd "C-c M-c") 'compile)