Add restclient

This commit is contained in:
Jeremy Dormitzer 2019-11-07 17:01:35 -05:00
parent 583196bd04
commit 50a05049fd

View File

@ -1024,7 +1024,8 @@ Literate programming!
(ditaa . t)
(ledger . t)
(sql . t)
(jq . t)))))
(jq . t)
(restclient . t)))))
#+END_SRC
Get rid of the confirmation prompt:
@ -3333,6 +3334,19 @@ A fuzzy-finder for notes.
(switch-to-buffer "*redis-cli*"))
(error "Can't find redis-cli"))))
#+END_SRC
* Restclient
Explore APIs from within Emacs!
#+BEGIN_SRC emacs-lisp
(use-package restclient)
(use-package company-restclient
:after (restclient company)
:config
(add-to-list 'company-backends 'company-restclient))
(use-package ob-restclient
:after (restclient))
#+END_SRC
* IMenu
Get a nice IMenu sidebar:
#+BEGIN_SRC emacs-lisp