博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sublime text 3 常用插件/教程/快捷键等设置方法
阅读量:6627 次
发布时间:2019-06-25

本文共 2166 字,大约阅读时间需要 7 分钟。

必备插件:

 

快捷键:

 (常用)

 (大全)

 

插件安装方法:

首先安装PackageControl,推荐安装方法:Ctrl+Shift+P,然后输入Pack,找到PackageControl:Install Package,点击安装。

插件在线下载地址:

 

个人常用插件:

中文汉化 ChineseLocalizations推荐主题 Materialize侧栏扩展 SideBarEnhancementsGBK编码兼容 ConvertToUTF8前端神器 EmmetJS格式化 JsFormat快速注释 DocBlockr文件对比 FileDiffs快速加载文件名 AutoFileName自动注释头部 FileHeaderFTP工具 SFTPjQ函数提示 jQuery

 

个人设置:

{    "bold_folder_labels": true,    "color_scheme": "Packages/Materialize/schemes/Material One Dark.tmTheme",    "font_size": 13,    "highlight_line": true,    "highlight_modified_tabs": true,    "ignored_packages":    [        "Color Scheme - Default",        "Color Scheme - Legacy",        "Material Theme",        "Theme - Default",        "Vintage"    ],    "line_padding_bottom": 1,    "line_padding_top": 1,    "material_theme_bullet_tree_indicator": true,    "preview_on_click": false,    "scroll_past_end": true,    "tab_size": 2,    "theme": "Material One Dark.sublime-theme",    "translate_tabs_to_spaces": true,    "trim_trailing_white_space_on_save": true,    "vintage_start_in_command_mode": true,    "word_wrap": true}

 

个人快捷键设置:

[  { "keys": ["alt+space"], "command": "auto_complete" },  { "keys": ["alt+space"], "command": "replace_completion_with_auto_complete", "context":    [      { "key": "last_command", "operator": "equal", "operand": "insert_best_completion" },      { "key": "auto_complete_visible", "operator": "equal", "operand": false },      { "key": "setting.tab_completion", "operator": "equal", "operand": true }    ]  },  { "keys": ["ctrl+alt+d"], "command": "goto_definition" },  { "keys": ["ctrl+up"], "command": "swap_line_up" },  { "keys": ["ctrl+down"], "command": "swap_line_down" },  { "keys": ["ctrl+shift+c"], "command": "copy_path" },  { "keys": ["f12"], "command": "side_bar_files_open_with",    "args": {      "paths": [],      "application": "D:/Program Files/Mozilla Firefox/firefox.exe",      "extensions":".*"    }  },  { "keys": ["ctrl+f12"], "command": "side_bar_files_open_with",    "args": {      "paths": [],      "application": "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe",      "extensions":".*"    }  },]

 

转载于:https://www.cnblogs.com/inzens/p/9055722.html

你可能感兴趣的文章
HDU 6048 - Puzzle | 2017 Multi-University Training Contest 2
查看>>
Apache Kafka 0.9消费者客户端
查看>>
选择符
查看>>
【CodeForces】925 C.Big Secret 异或
查看>>
【游记】CTSC&APIO2017
查看>>
[旧博客]Python 第一天总结
查看>>
Codeforces Round #408 (Div. 2)
查看>>
java-面向对象之类、对象
查看>>
php将字符串转为二进制数据串
查看>>
java 8 常用功能实践整理
查看>>
团队项目开发
查看>>
bs4常用用法
查看>>
[iOS]iPhone进行真机测试(基础版)
查看>>
5.9 定位流
查看>>
玩转vim之vim插件-cscope
查看>>
win10下git用户账号删除更换
查看>>
使用Ant Design的select组件时placeholder不生效/不起作用的解决办法
查看>>
DOM_03之元素及常用对象
查看>>
缓存依赖
查看>>
C之算法
查看>>