Minor mistake fixed

This commit is contained in:
Sameer Rahmani 2017-03-23 01:23:18 +04:30
parent eb22103970
commit 5ec64ef257
1 changed files with 4 additions and 4 deletions

View File

@ -33,10 +33,10 @@
:key "C-?"
:description "Show this cheatsheet")
(cheatsheet-add :group '--Navigation--
:key "C-."
:key "s-."
:description "Move a word to right")
(cheatsheet-add :group '--Navigation--
:key "C-,"
:key "s-,"
:description "Move a word to left")
(cheatsheet-add :group '--Navigation--
:key "s-p"
@ -46,8 +46,8 @@
:description "Move forward by a paragraph")
(global-set-key (kbd "C-?") 'cheatsheet-show)
(global-set-key (kbd "C-.") 'right-word)
(global-set-key (kbd "C-,") 'left-word)
(global-set-key (kbd "s-.") 'right-word)
(global-set-key (kbd "s-,") 'left-word)
(global-set-key (kbd "s-n") 'forward-paragraph)
(global-set-key (kbd "s-p") 'backward-paragraph)