changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > core / emacs/keys.el

revision 34: 882a5c1e7b9f
parent 33: e3b0ec661dfa
child 35: b8b2433003ef
     1.1--- a/emacs/keys.el	Sat Nov 04 21:16:49 2023 -0400
     1.2+++ b/emacs/keys.el	Sun Nov 05 00:33:48 2023 -0400
     1.3@@ -63,9 +63,11 @@
     1.4   "." status-map
     1.5   "r" review-map
     1.6   "q" server-map
     1.7+  "d i" #'image-dired
     1.8   "<tab>" #'outline-cycle
     1.9   "<backtab>" #'outline-cycle-buffer
    1.10-  "z" #'scratch-new
    1.11+  "z" #'scratch-buffer
    1.12+  "C-z" #'scratch-new
    1.13   "Z" #'default-scratch-buffer
    1.14   ";" #'prog-comment-dwim
    1.15   "C-;" #'prog-comment-timestamp-keyword)
    1.16@@ -79,7 +81,7 @@
    1.17    (keymap-set conf-toml-mode-map "C-c C-c C-t" #'rust-test)))
    1.18 
    1.19 ;;; C-x
    1.20-;; (keymap-set ctl-x-map "C-b" #'ibuffer)
    1.21+(keymap-set ctl-x-map "C-b" #'ibuffer)
    1.22 
    1.23 ;;; C-x r
    1.24 (keymap-set ctl-x-r-map "SPC" #'point-to-register)
    1.25@@ -92,6 +94,7 @@
    1.26 
    1.27 ;;; Global
    1.28 (keymap-global-set "C-c c" user-map)
    1.29+(keymap-global-set "<remap> <tab-to-tab-stop>" #'imenu)
    1.30 
    1.31 (provide 'keys)
    1.32 ;; keys.el ends here