rest-client.el 700 B

123456789101112131415161718192021
  1. ;; --- Embedded Rest Client ---
  2. ;; Creates a built-in client for sending API calls
  3. ;; and pretty-printing the output.
  4. (require 'package-loader)
  5. (use-package restclient
  6. :commands (restclient-copy-curl-command
  7. restclient-http-send-current
  8. restclient-http-send-current-raw
  9. restclient-http-send-current-stay-in-window
  10. restclient-jump-next
  11. restclient-jump-prev
  12. restclient-mark-current
  13. restclient-mode
  14. restclient-narrow-to-current
  15. restclient-outline-mode
  16. restclient-toggle-body-visibility
  17. restclient-toggle-body-visibility-or-indent))
  18. (provide 'rest-client)