summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'tag-emacs/emacs.d/init.org')
-rw-r--r--tag-emacs/emacs.d/init.org28
1 files changed, 14 insertions, 14 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index cc2dbdf3..06d6f7c5 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -1099,33 +1099,33 @@ Option/alt, then Control.
 
 #+BEGIN_SRC emacs-lisp
   (unbind-key "<f4>")
-  (bind-key "<f5>" #'compile)
-  (bind-key "<f6>" #'kmacro-start-macro-or-insert-counter)
-  (bind-key "<f7>" #'kmacro-end-or-call-macro)
+  (bind-key* "<f5>" #'compile)
+  (bind-key* "<f6>" #'kmacro-start-macro-or-insert-counter)
+  (bind-key* "<f7>" #'kmacro-end-or-call-macro)
 
-  (bind-key "<apps>" #'execute-extended-command)
+  (bind-key* "<apps>" #'execute-extended-command)
 
   (unbind-key "C-z")
-  (bind-key "C-<tab>" #'other-window)
+  (bind-key* "C-<tab>" #'other-window)
 
-  (bind-key "C-x C-r" #'revert-buffer)
-  (bind-key "C-x C-j" #'delete-indentation)
+  (bind-key* "C-x C-r" #'revert-buffer)
+  (bind-key* "C-x C-j" #'delete-indentation)
   (unbind-key "C-x C-c")
 
-  (bind-key "C-c i" #'insert-char)
-  (bind-key "M-/" #'hippie-expand)
+  (bind-key* "C-c i" #'insert-char)
+  (bind-key* "M-/" #'hippie-expand)
 
   (unbind-key "s-h")
   (unbind-key "s-n")
   (unbind-key "s-p")
   (unbind-key "s-w")
-  (bind-key "s-k" #'kill-or-delete-this-buffer-dwim)
+  (bind-key* "s-k" #'kill-or-delete-this-buffer-dwim)
 
-  (bind-key "C-M-a" #'backward-paragraph text-mode-map)
-  (bind-key "C-M-e" #'forward-paragraph text-mode-map)
+  (bind-key* "C-M-a" #'backward-paragraph text-mode-map)
+  (bind-key* "C-M-e" #'forward-paragraph text-mode-map)
 
-  (bind-key "s-x" (define-prefix-command 'super-x-map))
-  (bind-key "s-," #'switch-to-dotfiles)
+  (bind-key* "s-x" (define-prefix-command 'super-x-map))
+  (bind-key* "s-," #'switch-to-dotfiles)
   (set-register ?z `(file . ,(expand-file-name ".config/zsh/zshrc" "~")))
 #+END_SRC
 * Misc