17 lines
491 B
EmacsLisp
17 lines
491 B
EmacsLisp
;;; core-quickrun.el
|
|
|
|
(use-package quickrun
|
|
:commands (quickrun
|
|
quickrun-region
|
|
quickrun-with-arg
|
|
quickrun-shell
|
|
quickrun-compile-only
|
|
quickrun-replace-region
|
|
helm-quickrun)
|
|
:config
|
|
(add-popwin-rule! "*quickrun*" :position bottom :height 15)
|
|
(add-unreal-buffer! "\\`\\*quickrun\\*\\'")
|
|
(add-to-list 'quickrun-file-alist '("\\.gvy$" . "groovy")))
|
|
|
|
(provide 'core-quickrun)
|
|
;;; core-quickrun.el ends here
|