Update which-key descriptions
This commit is contained in:
+10
-10
@@ -942,12 +942,18 @@ Functions that only use built-in Emacs functionality.
|
|||||||
(org-babel-load-file (concat dot-emacs-dir "/config.org")))
|
(org-babel-load-file (concat dot-emacs-dir "/config.org")))
|
||||||
|
|
||||||
(defun dot/find-file-emacsd ()
|
(defun dot/find-file-emacsd ()
|
||||||
"Find a file under `dot-emacs-dir', recursively."
|
"Find file under `dot-emacs-dir', recursively."
|
||||||
(interactive)
|
(interactive)
|
||||||
(let ((files (mapcar 'abbreviate-file-name
|
(let ((files (mapcar 'abbreviate-file-name
|
||||||
(directory-files-recursively dot-emacs-dir ""))))
|
(directory-files-recursively dot-emacs-dir ""))))
|
||||||
(find-file (completing-read "Find file (emacs.d): " files nil t))))
|
(find-file (completing-read "Find file (emacs.d): " files nil t))))
|
||||||
|
|
||||||
|
(defun dot/find-file-recentf ()
|
||||||
|
"Use `completing-read' to open a recent file."
|
||||||
|
(interactive)
|
||||||
|
(let ((files (mapcar 'abbreviate-file-name recentf-list)))
|
||||||
|
(find-file (completing-read "Find file (recent): " files nil t))))
|
||||||
|
|
||||||
(defun dot/indent-buffer ()
|
(defun dot/indent-buffer ()
|
||||||
"Indent each nonblank line in the buffer."
|
"Indent each nonblank line in the buffer."
|
||||||
(interactive)
|
(interactive)
|
||||||
@@ -967,12 +973,6 @@ Functions that only use built-in Emacs functionality.
|
|||||||
(_ (evil-ret))
|
(_ (evil-ret))
|
||||||
)))
|
)))
|
||||||
|
|
||||||
(defun dot/recentf-open-files ()
|
|
||||||
"Use `completing-read' to open a recent file."
|
|
||||||
(interactive)
|
|
||||||
(let ((files (mapcar 'abbreviate-file-name recentf-list)))
|
|
||||||
(find-file (completing-read "Find file (recent): " files nil t))))
|
|
||||||
|
|
||||||
(defun dot/reload-theme ()
|
(defun dot/reload-theme ()
|
||||||
"Reload custom theme."
|
"Reload custom theme."
|
||||||
(interactive)
|
(interactive)
|
||||||
@@ -1480,11 +1480,11 @@ General.el ~leader key binds.
|
|||||||
"f" '(:ignore t :which-key "file")
|
"f" '(:ignore t :which-key "file")
|
||||||
"f e" '(:ignore t :which-key "emacs")
|
"f e" '(:ignore t :which-key "emacs")
|
||||||
"f e c" '(dot/config-visit :which-key "Config visit")
|
"f e c" '(dot/config-visit :which-key "Config visit")
|
||||||
"f e f" '(dot/find-file-emacsd :which-key "Find file emacs.d")
|
"f e f" '(dot/find-file-emacsd :which-key "Find emacs.d file")
|
||||||
"f e r" '(dot/config-reload :which-key "Config reload")
|
"f e r" '(dot/config-reload :which-key "Config reload")
|
||||||
"f d" '(dired :which-key "Find directory")
|
"f d" '(dired :which-key "Find directory")
|
||||||
"f f" '(find-file-in-project-root :which-key "Find file")
|
"f f" '(find-file-in-project-root :which-key "Find file")
|
||||||
"f r" '(dot/recentf-open-files :which-key "Recent files")
|
"f r" '(dot/find-file-recentf :which-key "Find recent file ")
|
||||||
"f R" '(rename-file-and-buffer :which-key "Rename file")
|
"f R" '(rename-file-and-buffer :which-key "Rename file")
|
||||||
"f s" '(basic-save-buffer :which-key "Save file")
|
"f s" '(basic-save-buffer :which-key "Save file")
|
||||||
"f S" '(write-file :which-key "Save file as...")
|
"f S" '(write-file :which-key "Save file as...")
|
||||||
@@ -1512,7 +1512,7 @@ General.el ~leader key binds.
|
|||||||
"n r r" '(org-roam :which-key "Org Roam")
|
"n r r" '(org-roam :which-key "Org Roam")
|
||||||
"n r s" '(org-roam-server-mode :which-key "Org Roam Server")
|
"n r s" '(org-roam-server-mode :which-key "Org Roam Server")
|
||||||
"n r C" '(org-roam-build-cache :which-key "Build cache")
|
"n r C" '(org-roam-build-cache :which-key "Build cache")
|
||||||
"n r I" '(org-roam-insert-immediate :which-key "Insert (skip org-capture)")
|
"n r I" '(org-roam-insert-immediate :which-key "Insert without org-capture")
|
||||||
|
|
||||||
;; Projectile
|
;; Projectile
|
||||||
"p" '(:keymap projectile-command-map :package projectile :which-key "projectile")
|
"p" '(:keymap projectile-command-map :package projectile :which-key "projectile")
|
||||||
|
|||||||
Reference in New Issue
Block a user