Emacs for Windowsでmsysgitシェルを使用する
私はEmacsを初めて使用し、次のコマンドでmsysgitシェルを開くことができるようにemacsをセットアップしようとしています。 M-x bash-shell 次のスニペットをinit.elに追加しました。 (defun bash-shell () "Run git bash in shell mode." (interactive) (let ((explicit-shell-file-name "C:/Dev/Apps/Git/bin/sh.exe") (shell-file-name explicit-shell-file-name) (explicit-sh.exe-args '("--login" "-i"))) (call-interactively 'shell))) 動作しているように見えますが、期待どおりには動作していません。次の出力から始まります。 Welcome to Git (version 1.8.4-preview20130916) Run 'git help git' to display the help index. Run 'git help <command>' to display help for specific commands. しかし、それから行き詰まります。ただし、標準コマンド(ls、pwdなど)を入力できますが、.bashrcは実行されないようです。exitしかし、私はそれを適切に起動するか、少なくとも.bashrcを実行するように思えますが、これは非常に混乱しています。 …