spacemacs/layers/restclient/packages.el

27 lines
663 B
EmacsLisp
Raw Normal View History

(setq restclient-packages
2014-11-27 19:59:24 +00:00
'(
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
2014-11-27 19:59:24 +00:00
))
)
)