Integrate dash-at-point

This commit is contained in:
Jeremy Dormitzer 2020-01-09 12:23:59 -05:00
parent 238385ae3d
commit 5cb0bfcab1

View File

@ -4632,3 +4632,13 @@ Does what it says on the box. I use it to hide the mode line in Neotree buffers.
#+BEGIN_SRC emacs-lisp
(show-paren-mode 1)
#+END_SRC
* Dash
[[https://kapeli.com/dash][Dash]] is a code browser app for MacOS. [[https://github.com/stanaka/dash-at-point][dash-at-point]] is an Emacs interface to it.
#+BEGIN_SRC emacs-lisp
(use-package dash-at-point
:if (file-exists-p "/Applications/Dash.app")
:general
((normal visual motion insert emacs) "C-c d" 'dash-at-point)
((normal visual motion insert emacs) "C-c e" 'dash-at-point-with-docset))
#+END_SRC