2015-06-15 09:05:52 +02:00
|
|
|
;;; core-quickrun.el
|
|
|
|
|
|
|
|
(use-package quickrun
|
|
|
|
:commands (quickrun
|
|
|
|
quickrun-region
|
|
|
|
quickrun-with-arg
|
|
|
|
quickrun-shell
|
|
|
|
quickrun-compile-only
|
|
|
|
quickrun-replace-region
|
2015-06-24 15:39:13 +02:00
|
|
|
helm-quickrun)
|
|
|
|
:config
|
|
|
|
(add-popwin-rule! "*quickrun*" :position bottom :height 15)
|
|
|
|
(add-unreal-buffer! "\\`\\*quickrun\\*\\'"))
|
2015-06-15 09:05:52 +02:00
|
|
|
|
|
|
|
(provide 'core-quickrun)
|
|
|
|
;;; core-quickrun.el ends here
|