美文网首页
通过 Idea 在 Emacs 或 Vim 中打开当前文件

通过 Idea 在 Emacs 或 Vim 中打开当前文件

作者: leeehao | 来源:发表于2018-11-12 15:25 被阅读0次

    以下 Emacs 为例,Vim 也适用

    通过 Idea 从 iTerm2 中 打开 Emacs 并编辑文件

    首先 Add tool

    Name 填写 Emacs
    Des 随意
    
    Program 添加下文脚本
    
    Arg 填写 $FilePath$
    
    Working dir 填写 $FileDir$
    

    保存,随后在 Tool 栏即可看到 emacs 选项

    以下是 shell 脚本

    #!/bin/sh
    echo $1
    osascript &>/dev/null <<EOF
          tell application "iTerm"
            activate
            tell current window to set tb to create tab with default profile
            tell current session of current window to write text "emacs -Q -nw $1"
          end tell
    EOF
    

    尝试以下,idea 不支持的 emacs 命令,可以通过外部打开

    相关文章

      网友评论

          本文标题:通过 Idea 在 Emacs 或 Vim 中打开当前文件

          本文链接:https://www.haomeiwen.com/subject/nwlcfqtx.html