2016-01-06 05:21:55 +00:00
#+TITLE : Restclient layer
2015-06-10 16:44:30 +00:00
2016-03-31 02:59:55 +00:00
* Table of Contents :TOC_4_gh:noexport:
- [[#description ][Description ]]
- [[#install ][Install ]]
- [[#configuration ][Configuration ]]
- [[#restclient ][Restclient ]]
- [[#keybindings ][Keybindings ]]
- [[#ob-http ][ob-http ]]
2015-06-10 16:44:30 +00:00
2016-03-23 14:17:46 +00:00
* Description
This is a package that lets you have a REPL-like interface for http requests
using a [[http://pashky/restclient.el ][restclient ]] buffer or an =org= buffer.
2015-06-10 16:44:30 +00:00
2016-01-06 05:21:55 +00:00
* 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.
2016-03-23 14:17:46 +00:00
* Configuration
By default the layer enables [[http://pashky/restclient.el ][restclient ]]. It is possible to use =org= via [[http://github.com/zweifisch/ob-http ][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 [[https://github.com/pashky/restclient.el ][GitHub Page ]].
Also there is an [[http://emacsrocks.com/e15.html ][Emacs Rocks! ]] episode of it.
** Keybindings
2015-06-10 16:44:30 +00:00
| Key Binding | Description |
|-------------+-------------------------------------------------------------|
2016-06-13 20:43:38 +00:00
| ~SPC m n~ | Jump to next request |
| ~SPC m p~ | Jump to previous request |
2015-06-10 16:44:30 +00:00
| ~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) |
2016-02-05 03:33:58 +00:00
| ~SPC m y~ | Copy query under the cursor as a curl command |
2015-06-10 16:44:30 +00:00
2016-03-23 14:17:46 +00:00
* 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 [[http://github.com/zweifisch/ob-http ][GitHub Page ]].