This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
spacemacs/layers/restclient
syl20bnr 13fe9f3cc9 resclient: add ob-http / org: add support for org-babel languages
Add layer variables `restclient-use-org` to use `ob-http` instead of
`resctlient`

Add support for easy addition of org-babel languages by appending to
`org-babel-load-languages` alist in org post-config use-package hook.
2016-03-23 10:28:27 -04:00
..
config.el resclient: add ob-http / org: add support for org-babel languages 2016-03-23 10:28:27 -04:00
funcs.el resclient: add ob-http / org: add support for org-babel languages 2016-03-23 10:28:27 -04:00
packages.el resclient: add ob-http / org: add support for org-babel languages 2016-03-23 10:28:27 -04:00
README.org resclient: add ob-http / org: add support for org-babel languages 2016-03-23 10:28:27 -04:00

Restclient layer

Description

This is a package that lets you have a REPL-like interface for http requests using a restclient buffer or an org buffer.

Install

To use this configuration layer, add it to your ~/.spacemacs. You will need to add restclient to the existing dotspacemacs-configuration-layers list in this file.

Configuration

By default the layer enables restclient. It is possible to use org via ob-http by setting the layer variable restclient-use-org to t.

Restclient

Any file with an .http extension is opened in a restclient buffer. Full documentation and examples can be found in the package's GitHub Page. Also there is an Emacs Rocks! episode of it.

Keybindings

Key Binding Description
SPC m s Send and stay in window (pretty-print response if possible)
SPC m S Send and switch window (pretty-print response if possible)
SPC m r Send and stay in window (do not attempt to pretty-print)
SPC m R Send and switch window (do not attempt to pretty-print)
SPC m y Copy query under the cursor as a curl command

ob-http

Any file with an .http extension is opened in an org buffer with org babel configured to use ob-http. Full documentation and examples can be found in the package's GitHub Page.