-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tianshu
committed
Apr 6, 2020
1 parent
6b293a4
commit d6d0a01
Showing
6 changed files
with
149 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# Meow: Modal Editing On Wheel | ||
|
||
![Logo](meow.svg) | ||
|
||
> Less is more | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
;;; meow-eldoc.el --- Make meow play well with eldoc | ||
|
||
(defconst meow--eldoc-commands | ||
'(meow-head | ||
meow-tail | ||
meow-prev | ||
meow-next | ||
meow-exp | ||
meow-word | ||
meow-backward-word)) | ||
|
||
(defun meow--eldoc-setup () | ||
"Setup commands those trigger eldoc. | ||
Basically, all navigation commands should trigger eldoc." | ||
(apply #'eldoc-add-command meow--eldoc-commands)) | ||
|
||
|
||
(provide 'meow-eldoc) | ||
;;; meow-eldoc.el ends here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters