LoginSignup
1
1

More than 5 years have passed since last update.

EmacsからGuake Terminalにコマンドを送る

Posted at

EmacsからiTermにコマンドを送る - $shibayu36->blog;Guake Terminal版です。

execute-on-guakeでコマンドを送り、toggle-guakeGuake Terminalの表示をトグルします。

(defun execute-on-guake (command)
  "Execute `command' on Guake Terminal."
  (interactive "MCommand: ")
  (start-process-shell-command "guake" nil (format "guake -e '%s'" command)))

(defun toggle-guake ()
  "Toggle visibility of Guake Terminal."
  (interactive)
  (start-process-shell-command "guake" nil "guake -t"))

Guake Terminalが起動していないと一回のコマンドではうまく行かないので、Guake Terminalをスタートアップ時に起動させておくといいと思います。

現在Emacsで開いているファイルのディレクトリに移動するのは、cd-on-guakeでできます。

(defun cd-on-guake ()
  "Move to current directory in Guake Terminal, then show Guake Terminal."
  (interactive)
  (execute-on-guake (format "cd %s" default-directory))
  (toggle-guake))
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1