fixed elisp and elpy hydras

This commit is contained in:
ndwarshuis 2019-04-24 03:51:53 -04:00
parent ae4031cc05
commit 4539d8198d
1 changed files with 18 additions and 11 deletions

View File

@ -3582,21 +3582,28 @@ They removed the underscore-inserts-arrow feature. Bring it back.
(:def-at-new-win . xref-find-definitions-other-window) (:def-at-new-win . xref-find-definitions-other-window)
(:doc-at . ess-display-help-on-object)) (:doc-at . ess-display-help-on-object))
#+END_SRC #+END_SRC
*** elisp
#+BEGIN_SRC emacs-lisp
(nd/hydra-standard-int emacs-lisp-mode-map
(:send-line . eval-last-sexp)
(:send-group . eval-defun)
(:send-buffer . eval-buffer))
#+END_SRC
*** python *** python
The only thing I like about elpy is the interactive shell The only thing I like about elpy is the interactive shell
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(nd/hydra-standard-int python-mode-map (nd/hydra-standard-int python-mode-map
(:send-line elpy-shell-send-statement) (:send-line . elpy-shell-send-statement)
(:send-line-step elpy-shell-send-statement-and-step) (:send-line-step . elpy-shell-send-statement-and-step)
(:send-line-follow elpy-shell-send-statement-and-go) (:send-line-follow . elpy-shell-send-statement-and-go)
(:send-group elpy-shell-send-group) (:send-group . elpy-shell-send-group)
(:send-group-step elpy-shell-send-group-and-step) (:send-group-step . elpy-shell-send-group-and-step)
(:send-group-follow elpy-shell-send-group-and-go) (:send-group-follow . elpy-shell-send-group-and-go)
(:send-buffer elpy-shell-send-region-or-buffer) (:send-buffer . elpy-shell-send-region-or-buffer)
(:send-buffer-follow elpy-shell-send-region-or-buffer-and-go) (:send-buffer-follow . elpy-shell-send-region-or-buffer-and-go)
(:shell-start elpy-shell-switch-to-shell) (:shell-start . elpy-shell-switch-to-shell)
(:shell-kill elpy-shell-kill) (:shell-kill . elpy-shell-kill)
(:shell-kill-all elpy-shell-kill-all)) (:shell-kill-all . elpy-shell-kill-all))
(nd/hydra-standard-nav python-mode-map (nd/hydra-standard-nav python-mode-map
(:def-at . anaconda-mode-find-definitions) (:def-at . anaconda-mode-find-definitions)