Sublime Text3 插件收录

Posted layezi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sublime Text3 插件收录相关的知识,希望对你有一定的参考价值。

收录常用的Sublime Text3 插件, 方便安装使用,免得每次一个个的搜, 欢迎补充

安装方法直接打开install package 搜索安装

1. Babel

  支持react jsx语法

2. Pretty JSON

  json 格式化

3. ConvertToUTF8

  编码转换

4. Cmd Caller

  在当前文件目录打开终端

  设置: 打开Preference->Package Settings-->Cmd Caller-->Settings

  然后添加设置如下:

{
  "windows": {
    "default": "Git",
    "apps": {
      "Git": {
        "name": "Run Git.exe Here",
        "cmd": "D:\Program Files\Git\git-bash.exe --cd="${file_path}""
      },
      "CMD": {
        "name": "Run cmd.ext Here",
        "cmd": "cmd.exe /s /k pushd "${file_path}""
      }
    }
  }
}

  使用: 查看Preference->Package Settings-->Cmd Caller-->Key Bindings 按照设置的快捷键操作即可, 或者自己修改

 

 

前端类函数组件跳转设置:

Preference-->Browse Packages..

打开目录后找到User目录下文件:  Default (Windows).sublime-mousemap

如果没有, 就新建一个文件命名为: Default (Windows).sublime-mousemap

然后文件内添加内容如下:

[
  {
    "button": "button2",
    "count": 1,
    "modifiers": [
      "ctrl"
    ],
    "command": "jump_back"
  },
  {
    "button": "button1",
    "count": 1,
    "modifiers": [
      "ctrl"
    ],
    "press_command": "drag_select",
    "command": "goto_definition"
  }
]

 添加后可通过Ctrl + 鼠标左右键 实现跳转和回跳

 

以上是关于Sublime Text3 插件收录的主要内容,如果未能解决你的问题,请参考以下文章

Sublime text3最全快捷键清单

sublime text3 增加代码片段(snipper)

一个前端程序猿的Sublime Text3的自我修养

sublime text3 添加新片段

为什么要选择Sublime Text3?

sublime text3 常用插件