summaryrefslogtreecommitdiff
path: root/lisp/init-external.el
blob: b18cd0ef60868cc8bc5ae1f6c78f6c5fa4bc4c89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
(define-prefix-command 'external-map)
(global-set-key (kbd "C-c x") 'external-map)

(defvar km/terminal "urxvt")

(defun km/open-external-terminal ()
  (interactive)
  (start-process "ext-term" nil km/terminal))

(define-key external-map "t" 'km/open-external-terminal)
(define-key external-map "s" 'shell-command)

(global-set-key (kbd "C-c c") 'compile)

(defadvice recompile (around restore-windows activate)
  "Prevent recompiling from spawning new windows."
  (save-window-excursion
    ad-do-it))

(defadvice shell-command (around shell-command-restore-windows activate)
  "Restore window configuraiton after shell-command.
The hides the *Async Shell Command* buffer that is opened in the
other window when an asynchronous command is run."
  (window-configuration-to-register :before-shell-command)
  ad-do-it
  (jump-to-register :before-shell-command))

(global-set-key (kbd "C-c g") 'recompile)

(provide 'init-external)