ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

运行应用程序

liuhewei 全部

从命令面板运行或启动外部应用程序、系统命令、自定义脚本。类似于VIM中的"!xxx"。

详细信息

  • 1.1.1
  • github.com
  • github.com
  • 8年前
  • 24分钟前
  • 10年前

安装

  • 总数 2K
  • Win 2K
  • Mac 300
  • Linux 411
8月6日 8月5日 8月4日 8月3日 8月2日 8月1日 7月31日 7月30日 7月29日 7月28日 7月27日 7月26日 7月25日 7月24日 7月23日 7月22日 7月21日 7月20日 7月19日 7月18日 7月17日 7月16日 7月15日 7月14日 7月13日 7月12日 7月11日 7月10日 7月9日 7月8日 7月7日 7月6日 7月5日 7月4日 7月3日 7月2日 7月1日 6月30日 6月29日 6月28日 6月27日 6月26日 6月25日 6月24日 6月23日 6月22日
Windows 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 2 0 1 0 0 1 0 0 1 1 0 1
Mac 1 2 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0

说明

源代码
raw.githubusercontent.com

运行应用程序 - Sublime Text

从命令面板运行任何自定义应用程序。只需Ctrl/Command+Shift+P,输入运行: XXX,就这么简单!

effect

安装说明

软件包安装程序

  • 安装 Sublime Package Control
  • 从命令面板选择“软件包控制:安装软件包”(super/ctrl+shift+p)
  • 查找“运行应用程序”并选择

Git克隆 * 通过在Sublime Text的“首选项”中“浏览包…”输入目录 * 运行

```
git clone https://github.com/liuhewei/run-app-sublime.git
```

用法

首先,通过以下方式添加应用程序:“工具”->“运行应用程序”->“添加应用程序”。

每个应用程序遵循

{
        "caption": "Run: Git",  // Run: <App-name>, shown in command pallete
        "command": "runapp",    // cannot be changed
        "args":{
          // application full path on Win/Linux, or only name on MAC
          "app": "",

          // argument list
          // variables can be use: $DIR$, $FILE$, $PROJ$
          "args": [""],

          // optional: define what should follow the command
          // default is None
          // "dir" - file directory, same as $DIR$
          // "file" - file name, same as $FILE$
          // "proj" - project directory, same as $PROJ$
          "type": "",

          // optional: command line application or not
          // default is false
          "cli": true

          // optional: send in selected text as input or not
          // default is false
          "input": true
        }
    }

以“Git bash for Windows”为例,说明GUI应用程序,原始命令为

C:/Windows/system32/wscript "D:/Tools/Git/Git Bash.vbs" <directory>

{
        "caption": "Run: Git",
        "command": "runapp",
        "args":{
          "app": "C:\\Windows\\system32\\wscript",
          "args": ["D:\\Tools\\Git\\Git Bash.vbs"],
          "type": "proj"
        }
    }

以“git status .”为例,说明CLI应用程序,原始命令为

D:\Tools\Git\mingw64\bin\git.exe status . 在当前文件的目录下。

{
    "caption": "Run: Git-status",
    "command": "runapp",
    "args":{
      "app": "D:\\Tools\\Git\\mingw64\\bin\\git.exe",
      "args": ["status", "."],
      "type": "dir",
      "cli": true
    }
}

以“go doc ”为例,说明具有输入的CLI应用程序,原始命令为

D:\Tools\Go\bin\go.exe doc fmt.Println 在所选文本 fmt.Println 下。

{
    "caption": "Run: Godoc",
    "command": "runapp",
    "args":{
      "app": "D:\\Tools\\Go\\bin\\go.exe",
      "args": ["doc"],
      "input": true,
      "cli": true
    }
}