示例: 'Microsoft.Office.Interop.Excel.Range' is a 'type' but is used like a 'variable'
如果我执行上面的命令,emacsclient将打印emacsclient --socket-name ~/.emacs.d/server/server -eval "(message \"argsFromCommandLine\")"
然后退出。
我想在emacsclient启动后eval一个lisp表达式,但是打开了新的emacsclient窗口。
实际上,我想使用外部工具从Intellij执行此命令。
ok
,从magit-test-project的一个源文件跳转到emacsclient中的magit-status-mode。
由于
答案 0 :(得分:1)
将-c/--create-frame
传递给emacsclient
应该可以解决问题。
如果我运行emacsclient -c --eval "(magit-status \"/path/to/project\")"
,我最终会在magit-status
缓冲区中为预期项目添加一个新的emacs框架。