spacemacs/layers/+tools/restclient
syl20bnr 41e546f040 Move all use-package hook declaration to pre-init functions
Had to create dummy init functions at some places since the owner of a package
is the last layer that defines the init function of a package. And a package
can be installed only if it has an owner.
2018-01-10 23:57:18 -05:00
..
config.el Happy New Year 2018! 2018-01-04 02:00:25 -05:00
funcs.el Happy New Year 2018! 2018-01-04 02:00:25 -05:00
packages.el Move all use-package hook declaration to pre-init functions 2018-01-10 23:57:18 -05:00
README.org Fix documentation for speed-reading, restclient and pandoc layer 2017-12-03 17:55:12 +02:00

Restclient layer

Description

This layer provides a REPL-like interface for http requests.

Features:

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 uses restclient. To use org via ob-http by default set the layer variable restclient-use-org to t.

Note that both restclient and ob-http are always installed so you can choose the mode at any time.

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.

There is support for org-babel and restclient code blocks, for instance:

#+BEGIN_SRC restclient
  GET http://example.com
#+END_SRC

Keybindings

Key Binding Description
SPC m n Jump to next request
SPC m p Jump to previous request
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.