mirror of
https://github.com/vale981/boon
synced 2025-03-06 01:51:38 -05:00
comments
This commit is contained in:
parent
730cf6c217
commit
bf0408a902
1 changed files with 3 additions and 4 deletions
|
@ -411,7 +411,7 @@ line."
|
|||
(insert replacement))
|
||||
|
||||
(defun boon-quote-character (char)
|
||||
"Execute the 1-character command which would be executed if boon was not enabled."
|
||||
"Execute the command bound to the character CHAR if boon was not enabled."
|
||||
(interactive "cThe character to insert or command to execute")
|
||||
(let ((cmd
|
||||
(or (and (current-local-map) (lookup-key (current-local-map) (make-string 1 char)))
|
||||
|
@ -419,10 +419,9 @@ line."
|
|||
(setq last-command-event char)
|
||||
(message (format "Executing the command bound to %c" char))
|
||||
(call-interactively cmd nil [char])))
|
||||
|
||||
|
||||
(defun boon-quit ()
|
||||
"Exit the current modes we're in until no special state is
|
||||
remaining"
|
||||
"Exit the current modes we're in until no special state is remaining."
|
||||
(interactive)
|
||||
(cond
|
||||
((use-region-p)
|
||||
|
|
Loading…
Add table
Reference in a new issue