私はEmacsを初めて使用し(Windowsではバージョン24.1.1を使用)、ここで見つけた以下のコードを含めることで.emacsファイルを変更しました:CSharpRepl emacs統合?
(defun csharp-repl ()
"Open a new side-by-side window and start CSharpRepl in it."
(interactive)
(split-window-side-by-side)
(other-window 1)
(comint-run "C:\\Program Files\\CSRepl\\CSRepl.exe"))
(global-set-key [f11] 'csharp-repl)
F11キーを押すと、「シンボルの関数定義が無効です:split-window-side-by-side」というエラーが表示されます。(split-window-side-by-side)と(other-window 1)を外すと、C#REPLが開きますが、1つのウィンドウで表示されますが、これは実際には必要ありません。どんな助けでもいただければ幸いです。