Skip to content

Commit

Permalink
add logo & bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tianshu committed Apr 6, 2020
1 parent 6b293a4 commit d6d0a01
Show file tree
Hide file tree
Showing 6 changed files with 149 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
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
Expand Down
2 changes: 1 addition & 1 deletion meow-command.el
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ If using without selection, toggle the number of spaces between one/zero."
(interactive)
(meow--execute-kbd-macro meow--kbd-backward-barf))

(defun meow-raise-exp ()
(defun meow-raise-sexp ()
(interactive)
(meow--execute-kbd-macro meow--kbd-raise-sexp))

Expand Down
19 changes: 19 additions & 0 deletions meow-eldoc.el
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
1 change: 1 addition & 0 deletions meow-init.el
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
(global-set-key (kbd "<escape>") 'meow-escape-or-normal-modal)
(setq delete-active-region nil)
(meow--mc-setup)
(meow--eldoc-setup)
(when (featurep 'wgrep)
(require 'meow-wgrep)
(meow--wgrep-setup))
Expand Down
2 changes: 2 additions & 0 deletions meow.el
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,11 @@
(require 'meow-util)
(require 'meow-face)
(require 'meow-mc)
(require 'meow-eldoc)
(require 'meow-init)
(require 'meow-core)
(require 'meow-helpers)
(require 'meow-tut)

(provide 'meow)

Expand Down
124 changes: 124 additions & 0 deletions meow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit d6d0a01

Please sign in to comment.