From fdb4c2ecc86b0f7f30733c67161955a5a4f372b8 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Fri, 20 Dec 2024 23:26:30 -0600 Subject: [PATCH] switching restclient to verb --- README.org | 12 +++--------- init.el | 5 +---- 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/README.org b/README.org index 5d8fe648..794b6d16 100644 --- a/README.org +++ b/README.org @@ -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 diff --git a/init.el b/init.el index 54108753..7febd14f 100644 --- a/init.el +++ b/init.el @@ -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