我是Emacs的新手(在Windows上使用版本24.1.1)并且我通过包括更改了我的.emacs文件 我在这里找到的代码:CSharpRepl emacs integration?
(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时,我最终得到一个错误,说“符号的功能定义是无效的:拆分窗口并排”。如果我离开(并排拆分窗口)和(其他窗口1),C#REPL将打开但在一个窗口中,这不是我想要的。 任何帮助将不胜感激。
答案 0 :(得分:1)
您确定不是在寻找split-window-vertically
吗?在我的emacs24中,我在M-x下看不到与split-window-side-by-side
匹配的任何内容。