summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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")