| 123456789101112131415161718192021 |
- ;; --- Embedded Rest Client ---
- ;; Creates a built-in client for sending API calls
- ;; and pretty-printing the output.
- (require 'package-loader)
- (use-package restclient
- :commands (restclient-copy-curl-command
- restclient-http-send-current
- restclient-http-send-current-raw
- restclient-http-send-current-stay-in-window
- restclient-jump-next
- restclient-jump-prev
- restclient-mark-current
- restclient-mode
- restclient-narrow-to-current
- restclient-outline-mode
- restclient-toggle-body-visibility
- restclient-toggle-body-visibility-or-indent))
- (provide 'rest-client)
|