spacemacs/layers/restclient/packages.el
2016-02-07 14:24:05 +01:00

27 lines
663 B
EmacsLisp

(setq restclient-packages
'(
restclient
)
)
(defun restclient/init-restclient ()
(use-package restclient
:mode ("\\.http\\'" . restclient-mode)
:defer t
:init
(progn
(defun restclient-http-send-current-raw-stay-in-window ()
(interactive)
(restclient-http-send-current t t))
(spacemacs/set-leader-keys-for-major-mode 'restclient-mode
"s" 'restclient-http-send-current-stay-in-window
"S" 'restclient-http-send-current
"r" 'restclient-http-send-current-raw-stay-in-window
"R" 'restclient-http-send-current-raw
"y" 'restclient-copy-curl-command
))
)
)