美文网首页
Sublime扫盲

Sublime扫盲

作者: 黄靠谱 | 来源:发表于2019-05-04 15:47 被阅读0次

优点:

  • 颜值即正义,甩editplus几条街
  • 支持类似于Word文档,Ctrl + 滚动, 调整字体大小的功能,非常方便
  • 支持常用的几种文件类型,右下角有 text Type的选项,选中 SQL的话,会对关键字进行特别显示,比如 select from delete等

快捷键:

  • Esc 关闭要操作的对话框

  • Ctrl + O 打开文件

  • Ctrl + W 关闭文件

  • Ctrl + N 创建新txt文档

  • Ctrl + P 文件切换

  • Ctrl + D 删除整行

  • Ctrl + G 定位到行

  • Ctrl + F查找功能

  • Ctrl + H替换功能

快捷键自定义:Preferences —— KeyBindings - Default
[
{ "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },

]

其它:

  1. text3 中文字体错位:
    {
    "font_face": "Consolas",
    "dpi_scale": 1.0,
    "font_size": 16,
    "ignored_packages":
    [
    "Vintage"
    ],
    "font_options": ["gdi"]
    }

  2. 在不同file Type下有不同的快捷键

相关文章

网友评论

      本文标题:Sublime扫盲

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