From 5cb0bfcab10596afb025c1463a7b37cd853e6376 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Thu, 9 Jan 2020 12:23:59 -0500 Subject: [PATCH] Integrate dash-at-point --- emacs/init.org | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/emacs/init.org b/emacs/init.org index f49bc3b..39ce7b1 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -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