summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2023-01-02 13:44:40 +0000
committerYann Herklotz <git@yannherklotz.com>2023-01-02 13:44:40 +0000
commit6d4de41ececa5c29f2f5c82ac7e6fe66eeb582ef (patch)
tree5354e7fcea3fcb74edb61447e3b054c35796e21e
parent2f0ed0ef0015b0df7b8a31abafed5234d36f8d11 (diff)
downloadymh-emacs-6d4de41ececa5c29f2f5c82ac7e6fe66eeb582ef.tar.gz
ymh-emacs-6d4de41ececa5c29f2f5c82ac7e6fe66eeb582ef.zip
Fix function names in ymh-common.el
-rw-r--r--ymh-emacs/ymh-common.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/ymh-emacs/ymh-common.el b/ymh-emacs/ymh-common.el
index 005f39b..887060e 100644
--- a/ymh-emacs/ymh-common.el
+++ b/ymh-emacs/ymh-common.el
@@ -9,12 +9,12 @@
;;; Code:
-(defun ymhg/prev-window ()
+(defun ymh/prev-window ()
"Go to the previous window using `other-window'."
(interactive)
(other-window -1))
-(defun ymhg/reset-coq-windows ()
+(defun ymh/reset-coq-windows ()
"Resets the Goal and Response windows."
(interactive)
(other-frame 1)
@@ -25,11 +25,11 @@
(switch-to-buffer "*response*")
(other-frame 1))
-(defun ymhg/pass (query)
+(defun ymh/pass (query)
"Return the password as a string from QUERY."
(s-trim (shell-command-to-string (concat "pass show " query))))
-(defun ymhg/apply-theme (appearance)
+(defun ymh/apply-theme (appearance)
"Load theme, taking current system APPEARANCE into consideration."
(mapc #'disable-theme custom-enabled-themes)
(pcase appearance
@@ -42,7 +42,7 @@
(before theme-dont-propagate activate)
(mapc #'disable-theme custom-enabled-themes))
-(defun ymhg/electric-space ()
+(defun ymh/electric-space ()
(interactive)
(if (looking-back (sentence-end))
(insert "%\n")