diff options
Diffstat (limited to '.config/nyxt/keybinds.lisp')
| -rw-r--r-- | .config/nyxt/keybinds.lisp | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/.config/nyxt/keybinds.lisp b/.config/nyxt/keybinds.lisp index 3e96620..52087d9 100644 --- a/.config/nyxt/keybinds.lisp +++ b/.config/nyxt/keybinds.lisp @@ -1,8 +1,18 @@ (in-package #:nyxt-user) (define-configuration buffer - ((override-map (let ((map (make-keymap "my-override-map"))) + ((override-map (let ((map (make-keymap "custom-map"))) (define-key map "M-I" 'show-weather - "C-2" 'open-external-browser) + "C-2" 'open-external-browser + "C-x C-b" 'switch-buffer + "C-x b" 'list-buffers) map)))) + +;;;; for some reason this does not work, even though it's from the manual +;; (define-configuration base-mode +;; ((keyscheme-map +;; (define-keyscheme-map "my-base" (list :import %slot-value%) +;; keyscheme:emacs +;; (list +;; "C-x C-b" NIL))))) |
