This commit is contained in:
Jean-Philippe Bernardy 2016-08-28 19:14:47 +02:00
parent 0cab273e80
commit 8fc64d60bd
2 changed files with 7 additions and 6 deletions

View file

@ -223,12 +223,15 @@
;; Most of these are actually in the boon-moves-map; however some don't quite work there; so they end up here. ;; Most of these are actually in the boon-moves-map; however some don't quite work there; so they end up here.
(define-key boon-command-map (kbd "C-u") 'scroll-down-line) (define-key boon-command-map (kbd "C-u") 'scroll-down-line)
(define-key boon-command-map (kbd "C-y") 'scroll-up-line) (define-key boon-command-map (kbd "C-y") 'scroll-up-line)
(define-key boon-command-map "'" 'boon-toggle-mark)
(define-key indent-rigidly-map "i" 'indent-rigidly-right)
(define-key indent-rigidly-map "e" 'indent-rigidly-left)
(define-key boon-special-map "x" boon-x-map)
(define-key boon-special-map "g" boon-goto-map)
(define-key boon-special-map "G" 'revert-buffer)
(provide 'boon-colemak) (provide 'boon-colemak)
;;; boon-colemak.el ends here ;;; boon-colemak.el ends here
(define-key indent-rigidly-map "i" 'indent-rigidly-right)
(define-key indent-rigidly-map "e" 'indent-rigidly-left)

View file

@ -13,10 +13,8 @@
(defvar boon-goto-map (make-sparse-keymap)) (defvar boon-goto-map (make-sparse-keymap))
(define-key boon-select-map " " 'boon-select-line) (define-key boon-select-map " " 'boon-select-line)
(define-key boon-command-map "'" 'boon-toggle-mark)
(define-key boon-special-map "x" boon-x-map)
(define-key boon-special-map "g" boon-goto-map)
(define-key boon-special-map "G" 'revert-buffer)
(define-key boon-special-map "`" 'boon-quote-character) (define-key boon-special-map "`" 'boon-quote-character)
(define-key boon-special-map "'" 'boon-quote-character) (define-key boon-special-map "'" 'boon-quote-character)