switching restclient to verb

This commit is contained in:
Chris Cochrun 2024-12-20 23:26:30 -06:00
parent 220cd99b42
commit fdb4c2ecc8
2 changed files with 4 additions and 13 deletions

View file

@ -3924,16 +3924,10 @@ Sometimes I need to edit CSV files quickly
:mode ("\\.csv\\'" . csv-mode))
#+end_src
*** Restclient
Sometimes dealing with REST APIs it's easiest to do this incrementally with restclient.el
*** Verb
Sometimes dealing with REST APIs it's easiest to do this incrementally with verb
#+begin_src emacs-lisp
(use-package restclient
:commands (restclient-mode))
#+end_src
Let's also add org-babel support for this to create documentation easier.
#+begin_src emacs-lisp
(use-package ob-restclient
(use-package verb
:after org)
#+end_src

View file

@ -2832,10 +2832,7 @@ targets."
(use-package csv-mode
:mode ("\\.csv\\'" . csv-mode))
(use-package restclient
:commands (restclient-mode))
(use-package ob-restclient
(use-package verb
:after org)
(use-package dart-mode