轻量级开发编辑器 sublime text 3 使用心得

sublime text 3 编辑器官方下载地址:

http://www.sublimetext.com/3

sublime text 的控件包 => Package Control 的安装与使用方法

ctrl + ~ 快捷键
,调出 console(sublime text控制台)
。将以下 Python 代码粘贴进去并 enter 执行
,不出意外即完成安装(完成后重启)
。以下提供 ST3 和 ST2 的 PY 安装代码:

Sublime Text 3:

    import urllib.request,os; pf = 'Package Control.sublime-package'; 
    ipp = sublime.installed_packages_path(); 
    urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); 
    open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())

Sublime Text 2:

    import urllib2,os; pf='Package Control.sublime-package'; 
    ipp = sublime.installed_packages_path(); 
    os.makedirs( ipp ) if not os.path.exists(ipp) else None; 
    urllib2.install_opener( urllib2.build_opener( urllib2.ProxyHandler( ))); 
    open( os.path.join( ipp, pf), 'wb' ).write( urllib2.urlopen( 'http://sublime.wbond.net/' +pf.replace( ' ','%20' )).read()); 
    print( 'Please restart Sublime Text to finish installation')

在线安装扩展控件

安装控件方法:
    快捷键 Ctrl+Shift+P(菜单 – Tools – Command Paletter)
    ,输入 install 选中Install Package并回车
    ,输入或选择你需要的插件回车就安装了(注意左下角的小文字变化,会提示安装成功)。
卸载控件方法:
    Ctrl+Shift+P调出命令面板
    ,输入Remove Package选项并回车
    ,选择要删除的插件即可
更新插件方法:
    upgrade packages,

推荐控件列表

Chineselocalization
    中文菜单

Ctranslator tool
    翻译插件,选择文本后,默认快捷键[ctrl+alt+H+H]就是按2次h

ConvertToUTF8
    让sublime支持中文文档的插件[体现在菜单栏->文件选项->set File Encoding to]

GBK Support
    中文乱码解决插件[体现在菜单栏->文件选项->Reload with Encoding ]

WordCunt
    计算文档字节,及行数插件

SideBarEnhancements
    侧边栏加强
    ,点击工具栏的 preferences > package setting > side bar > Key Building-User
    ,键入以下代码
    ,这里设置按 Ctrl+Shift+C 复制文件路径
    ,最后注意代码中的浏览器路径要以自己电脑里的文件路径为准。

SyncedSideBar
    每次打开文件
    ,侧边栏都会同步显示该文件所在目录中的位置
    ,如果打开的文件是左侧目录树的子集
    ,还能将目录树自动展开

soda
    侧边栏主题
    安装完,然后打开用户设置。
    输入: "theme": "Soda Dark.sublime-theme", 就可以得到黑色主题。
    输入: "theme": "Soda Light.sublime-theme", 就可以得到白色主题
    代码如下:
        {
            "color_scheme": "Packages/Colorcoder/Afterglow (Colorcoded).tmTheme",
            "fone_size": 8,
            "font_size": 8,
            "ignored_packages":
            [
            ],
            "original_color_scheme": "Packages/Theme - Afterglow/Afterglow.tmTheme",
            "theme": "Soda Light 3.sublime-theme"
        }

Material Theme
    主题(个人最爱主题,安装后右键菜单中有 Material Theme 选项可调)
    个人设置如下:
    {
        "always_show_minimap_viewport": true,
        "auto_complete": true,
        "bold_folder_labels": true,
        "color_scheme": "Packages/Colorcoder/Foggy-Evening (Colorcoded).tmTheme",
        "font_face": "monaco",
        "font_options":
        [
            "antialias",
            "gray_antialias",
            "no_bold",
            "round"
        ],
        "font_size": 10,
        "highlight_line": true,
        "ignored_packages":
        [
        ],
        "indent_guide_options":
        [
            "draw_normal",
            "draw_active"
        ],
        "line_padding_bottom": 3,
        "line_padding_top": 3,
        "material_theme_accent_bright-teal": true,
        "material_theme_accent_scrollbars": true,
        "material_theme_big_fileicons": true,
        "material_theme_bold_tab": true,
        "material_theme_bright_scrollbars": true,
        "material_theme_bullet_tree_indicator": true,
        "material_theme_compact_panel": true,
        "material_theme_compact_sidebar": true,
        "material_theme_contrast_fileicon": true,
        "material_theme_contrast_mode": true,
        "material_theme_panel_separator": true,
        "material_theme_small_statusbar": true,
        "material_theme_small_tab": true,
        "material_theme_tabs_autowidth": true,
        "material_theme_tabs_separator": true,
        "material_theme_tree_headings": true,
        "original_color_scheme": "Packages/User/Color Highlighter/themes/8-Colour-Dark (Colorcoded) (Colorcoded) (SL).tmTheme",
        "overlay_scroll_bars": "enabled",
        "show_encoding": true,
        "show_line_endings": true,
        "soda_classic_tabs": true,
        "theme": "Material-Theme.sublime-theme",
        "trim_trailing_white_space_on_save": true,
        "update_check": false,
        "word_wrap": "true"
    }

A File Icon
    左侧目录栏图标

SublimeTextTrans-master
    界面透明包
    透明:
        可在 setting-user 里更改 opacity 透明值
        也可以使用key:
            ctrl+shift+1
            ctrl+shift+2
            ctrl+shift+3
            ctrl+shift+4
            ctrl+shift+5
            ctrl+shift+6

ColorSublime
    编辑界面颜色方案(各种颜色各种换 ^_^ )
    安装完后,ctrl+shift+P 输入命令 ColorSublime: Install Theme 出现主题菜单,上下可预览,点击或回车安装该主题

Emmet
    快捷html生成 http://www.w3cplus.com/tools/emmet-cheat-sheet.html
    tab 快捷生成html
    ctrl+alt+enter 可视化模式

HTMLAttributes
    html属性补全功能

SublimeTmpl
    快速生成文件模板
    SublimeTmpl能新建html、css、javascript、php、python、ruby六种类型的文件模板
    ,可以自定义编辑文件模板
    。快捷生成按键:
        ctrl+alt+h html ,
        ctrl+alt+j javascript ,
        ctrl+alt+c css ,
        ctrl+alt+p php ,
        ctrl+alt+r ruby ,
        ctrl+alt+shift+p python

BracketHighlighter
    高亮显示匹配的括号、引号和标签
    sublime text的默认设置文档,
    点击菜单栏上的“Preferences”,找到“Setting-Default”,
    // If enabled, will highlight any line with a caret
    // 突出显示当前光标所在的行
    "highlight_line": true,
    // Additional spacing at the top of each line, in pixels
    // 设置每一行上内边距,以像素为单位的间距
    "line_padding_top": 6,
    // Additional spacing at the bottom of each line, in pixels
    // 设置每一行下内边距,以像素为单位的间距
    "line_padding_bottom": 6,

TrailingSpaces
    高亮显示多余的空格和Tab

    个人推荐不使用 TrailingSpaces
    ,使用设置文档来解决多余空格:
    sublime text的默认设置文档,
    点击菜单栏上的“Preferences”,找到“Setting-Default”,
    // Set to true to removing trailing white space on save
    // 为true时,保存文件时会删除每行结束后多余的空格
    "trim_trailing_white_space_on_save": false,

AutoFileName
    自动文件名补全
    自动补全文件路径及名称的插件

Sublime​Code​Intel
    代码提示、补全插件
    Sublime​Code​Intel 是一个代码提示、补全插件
    ,支持 JavaScript、Mason、XBL、XUL、RHTML、SCSS、Python、HTML、Ruby、Python3、XML、Sass、XSLT、Django、HTML5、Perl、CSS、Twig、Less、Smarty、Node.js、Tcl、TemplateToolkit 和 PHP 等语言
    ,是 Sublime Text 自带代码提示功能的很好扩展
    。它还有一个功能就是跳转到变量、函数定义的地方,十分方便。
        alt+左键函数名,alt+左键变量名

HTML-CSS-JS prettify
    对当前文档内的 html | css | js 编码进行格式对齐休整

TAG
    html内容自动格式化
    按Ctrl+Alt+f,可以将凌乱的html代码自动缩进格式化

Alignment
    等号对齐
    按Ctrl+Alt+A
    ,可以将凌乱的代码以等号为准左右对其
    ,适合有代码洁癖的朋友。
    左上角Sublime Text -> Preferences -> Package Settings ->Alignment

    如果没有最后的"Alignment"选项,说明你还没有安装此插件。

    这里面有5个选项:
    Settings- Default
    Settings- User
    Settings- Syntax Specific - User
    Key Bildings - Default
    Key Bildings - User

    带有后缀Default的,为默认设置,每次升级插件都会重置这里的设置。所以尽量不要修改这里,否则升级会丢失你原先的设置。
    带有后缀User的,为用户自定义设置,你可以把Default里面的设置全部复制一份到这里,然后再修改,这里存在的设置选项会覆盖Default里面的,即User的优先级更高。
    Key Bildings为快捷键设置,默认的快捷键很有可能因为和其他快捷键冲突而无效,
    所以及可以在Key Bildings - User里重新设置(格式可以仿照Default里的写法)。
    此快捷键是用来 实现对齐的。等号对其,如果是其它符号等对其方式可以查询百度或Google。
    默认快捷键[ [{ "keys": ["ctrl+alt+a"], "command": "alignment" }],和“QQ”的截屏快捷键冲突,可以改为“ctrl+shift+alt+a”。或者修改QQ快捷键

    参数详解,比如下面为原始测试数据
    int aa = 1;
    char bb = 'a';
    float fff = 2;
    unsigned int d = 1;
    (1)“align_indent”:
    开关量,默认为true,
    true,则把选择的多行的不同缩进级别也变成相同的缩进(最大的缩紧级别),结果如下:
    int aa = 1;
    char bb = 'a';
    float fff = 2;
    unsigned int d = 1;
    flase,只是对齐,不改变缩进级别,结果如下:
    int aa = 1;
    char bb = 'a';
    float fff = 2;
    unsigned int d = 1;
    (2)mid_line_tabs”
    开关量,默认为false。
    如果你的文本是使用Tab键缩进排版,设置该变量为true时,那么该插件在对齐文本的时候也使用Tab键来对齐缩进。
    但是这样可能会出现问题,因为Tab键在不同的编辑器上代表的空格数可能不同(Sublime 是代表4个空格),
    当你使用别的编辑器打开该文件时,简而言之,就是排版可能就不是对齐的了。
    (3)“alignment_chars”
    即对齐字符
    这是一个数组,可以这样设置多个字符:alignment_chars": ["=","*","a"] 默认只有“=”字符,即alignment_chars": ["="]
    数组里面的字符就是放在中线对齐的字符。
    如下面都把“=”排成一列中线对齐
    int aa = 1;
    char bb = 'a';
    float fff = 2;
    unsigned int d = 1;
    例如设置里增加“*”号,即:alignment_chars": ["=","*"]
    结果如下:
    原文:
    int *aa = 1;
    char *bb = 'a';
    float *fff = 2;
    unsigned int *d = 1;
    排列对齐后:(把“*”号排成对齐的一列)
    int *aa = 1;
    char *bb = 'a';
    float *fff = 2;
    unsigned int *d = 1;
    (4)“alignment_space_chars”
    和“alignment_chars”一样,也是数组格式
    默认值包含“=”号,即:alignment_space_chars": ["*","="]
    就是这个数组包含上面“alignment_chars”里的字符,
    对齐后,在其前面增加一个空格。
    如果这里不包含“alignment_chars”里的字符,对齐后,在其前面没有空格。
    可以这样说,“alignment_space_chars”数组是“alignment_chars”数组的子集。
    原文还在文章的起始处,这里设置包含“=”,
    即alignment_space_chars": ["="],
    结果如下:
    int aa = 1;
    char bb = 'a';
    float fff = 2;
    unsigned int d = 1;
    这里设置不包含任何字符,
    即alignment_space_chars": [],
    结果如下:
    int aa = 1;
    char bb = 'a';
    float fff = 2;
    unsigned int d= 1;
    (5)“alignment_prefix_chars”
    即:前缀字符
    默认设置:
    "alignment_prefix_chars": ["+", "-", "&", "|", "<", ">", "!", "~", "%", "/", "*", "."]
    对齐字符(即alignment_chars"里的字符),可以拥有前缀字符。例如”=“号字符前可以拥有以上字符作为前缀。
    原文设置如下:(这里的前缀字符有 “!“、“<“符号)
    int aa = 1;
    char bb != 'a';
    float fff <= 2;
    unsigned int d = 1;
    对齐后如下:(即把前缀字符+对齐字符一起当作对齐字符来对待)
    int aa         = 1;
    char bb        != 'a';
    float fff      <= 2;
    unsigned int d = 1;
    (6)总结
    可按照以上的参数说明,自己增加对齐的字符来增强功能。
    我一般需要在对齐字符前面增加一个空格,
    所以我一般就保持alignment_chars 数组和 alignment_space_chars数组一致。即在所有的对齐字符前面都增加一个空格。

color Highlighter
    CSS中显示十六进制颜色代码所对应的颜色

Hex to HSL
    自动转换颜色值,从16进制到HSL格式,快捷键 Ctrl+Shift+U

ColorPicker
    CSS调色盘
    在编辑CSS样式的时候,要加个自己喜欢颜色或改改颜色啥的,要到PS里去调色?ColorPicker可以让sublime text 3内置一个调色盘,调好颜色,点击OK就会在光标处生成十六进制颜色代码。
    key:自定义为 ctrl+shift+7

CssFomat
    css格式化
    自动格式化css编码,选中css编码块,右键菜单 -> Css Form

        Expanded                         => 选中的css{}选择器 保持属性间隔,保持属性换行[可读式格式化]
        Expanded (Break Selectors)       => 选中的css{}选择器 保持属性间隔,保持属性换行,css选择器间隔行[可读式格式化]
        Compact                          => 选中的css{}选择器 保持属性间隔,不保持属性换行[可读式格式化成一行]
        Compact (No spaces)              => 选中的css{}选择器 不保持属性间隔,不保持属性换行[格式化压缩成一行]
        Compact (Break spaces)           => 选中的css{}选择器 保持属性间隔,属性不换行,[可读式格式化成一行]
        Compact (Break spaces,No spaces) => 选中的css{}选择器 不保持属性间隔,不保持属性换行[格式化压缩成一行]
        Compressed                       => 选中的css{}块 [格式化成一行]

JsFormat
    javascript格式化
    有时从网上扒了人家的js代码来学习学习,打开发现被压缩了,这时就可以用JsFormat插件格式化js代码,恢复未压缩时候的排版,挺给力的。按快捷键Ctrl+Alt+F即可格式化当前的js文件了。

Minifier
    压缩js,css
    快捷键ctrl+alt+m

Javascript-API-Completions:
    支持Javascript、JQuery、Twitter Bootstrap框架、HTML5标签属性提示的插件,是少数支持sublime text 3的后缀提示的插件,HTML5标签提示sublime text3自带,不过JQuery提示还是很有用处的,也可设置要提示的语言。

JavaScriptNext - ES6 Syntax
    ES6 语法支持

IMESupport
    输入法-选字框跟随光标

sublimeLinter
    代码错误提示
    sublimeLinter能检查html、css、javascript、php等众多语言的错误代码并给出提示,前提是需要配置相应语言的环境,要检查js代码需要安装node.js,检查php代码需要安装php并配置环境等,用这个插件能及时帮我们纠正代码的错误,并培养我们良好的编码习惯和风格。

        前提先安装node.js程序

        在node.js的 node.js comand prompt,cmd界面输入以下命令,输入完后,稍等片刻安装完后出现版本号后,再输入
            安装css语法判断器命令
                npm install csslint
            安装js语法判读器命令
                npm install jshint
        ————————————————————————————————
        sublime安装 sublimelinter
        sublime安装 sublimelinter-csslint
        sublime安装 sublimelinter-jshint
        sublime安装   SublimeLinter-php
        ————————————————————————————————
        修改sublimeLinter设置
        Preferences/Package Settings/SublimeLinter/Setting - User

        {
            "user": {
                /*"csslint_options": {
                    "adjoining-classes": false,
                    "box-model": false,
                    "box-sizing": false,
                    "compatible-vendor-prefixes": false,
                    "floats": false,
                    "font-sizes": false,
                    "gradients": false,
                    "important": false,
                    "known-properties": false,
                    "outline-none": false,
                    "qualified-headings": false,
                    "regex-selectors": false,
                    "shorthand": false,
                    "text-indent": false,
                    "unique-headings": false,
                    "universal-selector": false,
                    "unqualified-attributes": false
                }*/
                "csslint_options": {
                    "adjoining-classes": "warning",
                    "box-model": true,
                    "box-sizing": "warning",
                    "compatible-vendor-prefixes": "warning",
                    "display-property-grouping": true,
                    "duplicate-background-images": "warning",
                    "duplicate-properties": true,
                    "empty-rules": true,
                    "errors": true,
                    "fallback-colors": "warning",
                    "floats": "warning",
                    "font-faces": "warning",
                    "font-sizes": "warning",
                    "gradients": "warning",
                    "ids": "warning",
                    "import": "warning",
                    "important": "warning",
                    "known-properties": true,
                    "outline-none": "warning",
                    "overqualified-elements": "warning",
                    "qualified-headings": "warning",
                    "regex-selectors": "warning",
                    "rules-count": "warning",
                    "shorthand": "warning",
                    "star-property-hack": "warning",
                    "text-indent": "warning",
                    "underscore-property-hack": "warning",
                    "unique-headings": "warning",
                    "universal-selector": "warning",
                    "vendor-prefix": true,
                    "zero-units": "warning"
                },
                "debug": false,//如果为true,SublimeLinter会将检查结果打印到Sublime的控制台中。默认为false
                "delay": 0.25,
                "error_color": "D02000",
                "gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme",
                "gutter_theme_excludes": [],
                "jshint_options": {   //关于 jshint 选项 http://bubkoo.com/2014/02/22/JSHint-options/#bitwise
                    "browser": true,
                    "curly": false,
                    "devel": true,
                    "eqeqeq": false,
                    "evil": true,
                    "forin": true,
                    "globals": {
                        "$": true,
                        "console": true,
                        "document": true,
                        "global": true,
                        "grunt": true,
                        "jQuery": true,
                        "module": true,
                        "setInterval": true,
                        "setTimeout": true,
                        "window": true
                    },
                    "jquery": true,
                    "latedef": false,
                    "noarg": false,
                    "noempty": false,
                    "quotmark": "single",
                    "strict": false,
                    "undef": true,
                    "unused": "vars",
                    "wsh": true
                },
                "lint_mode": "background",  //设置当前lint的模式。可用的值有background、load/save、save only和manual。默认为background
                "linters": {            //object。分别设置每个linter插件
                    "csslint": {
                        "@disable": false,  //开启或者关闭当前的linter
                        "args": [],         //设置linter的可选参数
                        "errors": "",
                        "excludes": [],     //指定linter需要忽略的目录
                        "ignore": "",
                        "warnings": ""
                    },
                    "htmlhint": {
                        "@disable": false,  //开启或者关闭当前的linter
                        "args": [],         //设置linter的可选参数
                        "excludes": []      //指定linter需要忽略的目录
                    },
                    "jshint": {
                        "@disable": false,  //开启或者关闭当前的linter
                        "args": [],         //设置linter的可选参数
                        "excludes": []      //指定linter需要忽略的目录
                    },
                    "php": {
                        "@disable": false,  //开启或者关闭当前的linter
                        "args": [],         //设置linter的可选参数
                        "excludes": []      //指定linter需要忽略的目录
                    }
                },
                "mark_style": "outline",
                "no_column_highlights_line": false,
                "passive_warnings": false,
                "paths": {
                    "linux": [],
                    "osx": [],
                    "windows": []
                },
                "python_paths": {
                    "linux": [],
                    "osx": [],
                    "windows": []
                },
                "rc_search_limit": 3,
                "shell_timeout": 10,
                "show_errors_on_save": false,//当你保存文件的时候会弹出一个显示检查结果的快速面板。默认为false
                "show_marks_in_minimap": true,
                "sublimelinter": "save-only",
                //运行模式:"save-only"当文件被保存的时候进行校验/true在用户输入时在后台进行即时校验/false只有在初始化的时候才进行校验/"load-save"当文件加载和保存的时候进行校验
                "sublimelinter_executable_map": {//校验的引擎路径 这里是配置 JavaScript 和 CSS 校验需要用到的 JS 引擎(这里用的是 Node.js)的安装路径。
                    "css": "C:/Program Files/nodejs/node.exe",
                    "javascript": "C:/Program Files/nodejs/node.exe"
                },
                "sublimelinter_gutter_marks": true,
                "sublimelinter_popup_errors_on_save": true,
                "syntax_map": {
                    "html (django)": "html",
                    "html (rails)": "html",
                    "html 5": "html",
                    "javascript (babel)": "javascript",
                    "magicpython": "python",
                    "php": "html",
                    "python django": "python"
                },
                "warning_color": "DDB700",
                "wrap_find": true
            }
        }


SublimeREPL
    这可能是对程序员最有用的插件
    。SublimeREPL 允许你在 Sublime Texxt 中运行各种语言(NodeJS , Python,Ruby, Scala 和 Haskell 等等)
    。运行程序都要执行:Tools -> SublimeREPL -> Python -> RUN current file 菜单
    或是 ctrl+b 进行编译

Terminal
    ,很实用的一个插件
    ,打开cmd命令窗口的快捷键是 Ctrl+Shift+T。

Nodejs
    这个就不用说了吧

E-Mail
    电子邮件(配置麻烦···掠过)

Git
    http://www.jianshu.com/p/243d4a93ff05
    https://github.com/kemayo/sublime-text-git/blob/master/Git.sublime-settings
    在工作中,版本控制软件最常用的软件之一,而最流行的 VCS 是 Git。你是否厌倦了保存文本文件,并切换回终端运行一些 Git 命令。如果你能从文本编辑器本身执行 Git 命令,岂不是很好?
        ctrl+shift+p:[Git,出现Git命令列表]
            Git:init    --下拉框出现要初始化为分布式版本仓库的路劲选择
            Git:status  --在弹出窗口中会显示出本地的项目更改状态。
            Git:diff    --文件更改的位置内容
            Git:add     --添加文件到git缓存
            Git:commit  --提交缓存区里文件到git本地库

GitGutter
    Sublime Text 有了 Git 插件之后,GitGutter 更好的帮助开发者查看文件之前的改动和差异,提升开发效率。

AllAutocomplete
    Sublime Text 默认的 Autocomplete 功能只考虑当前的文件
    ,而 AllAutocomplete 插件会搜索所有打开的文件来寻找匹配的提示词。

MarkdownEditing
    可能是Markdonw最好的插件了:语法高亮,缩略词,自动补全,配色方案。
    你也可以尝试使用MarkdownPreview作为替代解决方案。

启用 Vim 模式
在菜单栏中: Preferences -> Setting - User ,即可打开配置文件进行编辑,将 ignored_packages 忽略插件项的[]里面内容清空
C++编译
http://tieba.baidu.com/p/3481924547

个人设置 setting-User

{
    // 初始颜色方案
    "original_color_scheme": "Packages/Colorsublime - Themes/Foggy-Evening.tmTheme",
    // 颜色方案
    "color_scheme": "Packages/Colorcoder/Foggy-Evening (Colorcoded).tmTheme",
    // 主题
    "theme": "Afterglow.sublime-theme",
    // 加粗左侧导航树 文件夹
    "bold_folder_labels": true,
    // 标签颜色(顶部标签颜色变化)
    "color_inactive_tabs": true,
    // 标签介质(顶部标签形态变化)
    "tabs_medium": false,
    // 标签小(顶部标签大小变化)
    "tabs_small": true,
    // 字体类型
    "font_face": "Microsoft YaHei Mono",
    // 字体大小
    "font_size": 11,
    // 文本下内边距
    "line_padding_bottom": 2,
    // 文本上内边距
    "line_padding_top": 2,
    // 高亮当前行
    "highlight_line": true,
    // 保存时删除每行结束后多余的空格
    "trim_trailing_white_space_on_save": true,
    // 文本换行
    "word_wrap": "true",
    // 代码提示
    "auto_complete": true,
    // 更新检查
    "update_check": false,
    // 忽略插件
    "ignored_packages":
    [
    ],
    // 标题中文乱码(像素密度缩放?答:是在大屏幕尺寸下产生的问题)
    "dpi_scale": 1.0
}

批量安装插件

首先安装package control,
然后打开package control的配置文件
window系统的配置文件在
`C:\Users[YOUR USERNAME]\AppData\Roaming\Sublime Text 3\Packages\User`
Mac系统的package control配置文件在
`~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/Package\ Control.sublime-settings`
填入需要安装的插件,重启sublime之后会自动安装没有安装的插件。示例:

{
    "bootstrapped": true,
    "in_process_packages":
    [
    ],
    "installed_packages":
    [
        "Alignment",
        "AutoFileName",
        "Bootstrap 3 Snippets",
        "BracketHighlighter",
        "ChineseLocalizations",
        "CodeFormatter",
        "Color Highlighter",
        "ColorPicker",
        "CSScomb",
        "DocBlockr",
        "E-Mail",
        "Emmet",
        "GitGutter",
        "GoSublime",
        "HTML-CSS-JS Prettify",
        "HTMLBeautify",
        "JavaScriptNext - ES6 Syntax",
        "jQuery",
        "JsFormat",
        "JSHint Gutter",
        "Markdown Preview",
        "MarkdownLight",
        "Package Control",
        "phpfmt",
        "PlainTasks",
        "Pretty JSON",
        "RustAutoComplete",
        "SublimeCodeIntel",
        "SublimeLinter",
        "SublimeLinter-php",
        "SublimeREPL",
        "SVN",
        "SyncedSideBar",
        "Thinkphp",
        "TrailingSpaces"
    ]
}

Sublime Text : 创建工程
Sublime Text 可以很方便地管理多个工程。使用SublimeText的Projects,可以将不同根目录的文件组织起来成为一个工程,而不用将所有的文件都放到一个根目录下面。
(1). 创建工程
Project > Add Folder to Project
这时在sidebar中将出现刚刚添加的文件目录,如果还需要添加其他目录,则重复这一操作即可。
(2). 保存工程
Project > Save Project As
击保存后Sublime Text将自动生成两个文件:
project_name.sumlime-project:包含工程定义,该文件会被记录到版本控制里。
project_name.sublim-workspace:包含了用户的工程数据,例如打开的文件和修改等,该文件不会被记录到版本控制里。
在*.sublime-project文件中,你可以定义工程配置。例如你可以定义多个目录路径,或者哪些目录或文件需要排除在外。创建完以后如果左侧没有出 现项目文件,则需要重启。
(3). 切换工程
如果你同时有好几个工程需要开发,你可以有以下两种方式来打开你需要工作的工程:
启动Sublime Text,点击Project > Open Project,找到*.sublime-project文件,打开。
启动Sublime Text,使用 Ctrl + Alt + P 快捷键,你会得到一个搜索框,该搜索框列出了所有打开过的工程名称,选中工程并打开。
PS:如果直接使用Sublime Text编辑.sublime-project,Sublime Text会自动载入工程,建议使用别的文本编辑器编辑.sublime-project。



sublime text 默认设置中文译

// While you can edit this file, it’s best to put your changes in
// “User/Preferences.sublime-settings”, which overrides the settings in here.
//
// Settings may also be placed in file type specific options files, for
// example, in Packages/Python/Python.sublime-settings for python files.
{
// Sets the colors used within the text area
// 主题文件的路径
“color_scheme”: “Packages/Color Scheme - Default/Monokai.tmTheme”,

// Note that the font_face and font_size are overriden in the platform
// specific settings file, for example, “Preferences (Linux).sublime-settings”.
// Because of this, setting them here will have no effect: you must set them
// in your User File Preferences.
// 设置字体和大小,必须在Settings-User里重写,这里设置没有任何效果
“font_face”: “Consolas”,
“font_size”: 12,

// Valid options are “no_bold”, “no_italic”, “no_antialias”, “gray_antialias”,
// “subpixel_antialias” and “no_round” (OS X only)
// 字体选项:no_bold不显示粗体字,no_italic不显示斜体字,no_antialias不抗锯齿
// 字体选项:bold显示粗体字,italic显示斜体字,antialias抗锯齿
// subpixel_antialias和no_round是OS X系统独有的
“font_options”: [],

// Characters that are considered to separate words
// 在文字上双击会全选当前的内容,如果里面出现以下字符,就会被截断
“word_separators”: “./()\”‘-:,.;~!@#$%^&*|+=[]{}`~?”,

// Set to false to prevent line numbers being drawn in the gutter
// 是否显示行号
“line_numbers”: true,

// Set to false to hide the gutter altogether
// 是否显示行号边栏
“gutter”: true,

// Spacing between the gutter and the text
// 行号边栏和文字的间距
“margin”: 4,

// Fold buttons are the triangles shown in the gutter to fold regions of text
// 是否显示代码折叠按钮
“fold_buttons”: true,

// Hides the fold buttons unless the mouse is over the gutter
// 不管鼠标在不在行号边栏,代码折叠按钮一直显示
“fade_fold_buttons”: true,

// Columns in which to display vertical rulers
//列显示垂直标尺,在中括号里填入数字,宽度按字符计算
“rulers”: [],

// Set to true to turn spell checking on by default
// 是否打开拼写检查
“spell_check”: false,

// The number of spaces a tab is considered equal to
// Tab键制表符宽度
“tab_size”: 4,

// Set to true to insert spaces when tab is pressed
// 设为true时,缩进和遇到Tab键时使用空格替代
“translate_tabs_to_spaces”: false,

// If translate_tabs_to_spaces is true, use_tab_stops will make tab and
// backspace insert/delete up to the next tabstop
// translate_tabs_to_spaces设置为true,Tab和Backspace的删除/插入作用于制表符宽度
// 否则作用于单个空格
“use_tab_stops”: true,

// Set to false to disable detection of tabs vs. spaces on load
// false时禁止在载入的时候检测制表符和空格
“detect_indentation”: true,

// Calculates indentation automatically when pressing enter
// 按回车时,自动与制表位对齐
“auto_indent”: true,

// Makes auto indent a little smarter, e.g., by indenting the next line
// after an if statement in C. Requires auto_indent to be enabled.
//针对C语言的
“smart_indent”: false,

// Adds whitespace up to the first open bracket when indenting. Requires
// auto_indent to be enabled.
// 需要启用auto_indent,第一次打开括号缩进时插入空格?(没测试出来效果…)
“indent_to_bracket”: true,

// Trims white space added by auto_indent when moving the caret off the
// line.
// 显示对齐的白线是否根据回车、tab等操作自动填补
“trim_automatic_white_space”: true,

// Disables horizontal scrolling if enabled.
// May be set to true, false, or “auto”, where it will be disabled for
// source code, and otherwise enabled.
// 是否自动换行,如果选auto,需要加双引号
“word_wrap”: false,

// Set to a value other than 0 to force wrapping at that column rather than the
// window width
// 设置窗口内文字区域的宽度
“wrap_width”: 0,

// Set to false to prevent word wrapped lines from being indented to the same
// level
// 防止被缩进到同一级的字换行
“indent_subsequent_lines”: true,

// Draws text centered in the window rather than left aligned
// 如果没有定义过,则文件居中显示(比如新建的文件)
“draw_centered”: false,

// Controls auto pairing of quotes, brackets etc
// 自动匹配引号,括号等
“auto_match_enabled”: true,

// Word list to use for spell checking
// 拼写检查的单词列表路径
“dictionary”: “Packages/Language - English/en_US.dic”,

// Set to true to draw a border around the visible rectangle on the minimap.
// The color of the border will be determined by the “minimapBorder” key in
// the color scheme
// 代码地图的可视区域部分是否加上边框,边框的颜色可在配色方案上加入minimapBorder键
“draw_minimap_border”: false,

// If enabled, will highlight any line with a caret
// 突出显示当前光标所在的行
“highlight_line”: false,

// Valid values are “smooth”, “phase”, “blink”, “wide” and “solid”.
// 设置光标闪动方式
“caret_style”: “smooth”,

// Set to false to disable underlining the brackets surrounding the caret
// 是否特殊显示当前光标所在的括号、代码头尾闭合标记
“match_brackets”: true,

// Set to false if you’d rather only highlight the brackets when the caret is
// next to one
// 设为false时,只有光标在括号或头尾闭合标记的两端时,match_brackets才生效
“match_brackets_content”: true,

// Set to false to not highlight square brackets. This only takes effect if
// match_brackets is true
// 是否突出显示圆括号,match_brackets为true生效
“match_brackets_square”: false,

// Set to false to not highlight curly brackets. This only takes effect if
// match_brackets is true
// 是否突出显示大括号,match_brackets为true生效
“match_brackets_braces”: false,

// Set to false to not highlight angle brackets. This only takes effect if
// match_brackets is true
// 是否突出显示尖括号,match_brackets为true生效
“match_brackets_angle”: false,

// Enable visualization of the matching tag in HTML and XML
// html和xml下突出显示光标所在标签的两端,影响HTML、XML、CSS等
“match_tags”: true,

// Highlights other occurrences of the currently selected text
// 全文突出显示和当前选中字符相同的字符
“match_selection”: true,

// Additional spacing at the top of each line, in pixels
// 设置每一行上内边距,以像素为单位的间距
“line_padding_top”: 1,

// Additional spacing at the bottom of each line, in pixels
// 设置每一行下内边距,以像素为单位的间距
“line_padding_bottom”: 1,

// Set to false to disable scrolling past the end of the buffer.
// On OS X, this value is overridden in the platform specific settings, so
// you’ll need to place this line in your user settings to override it.
// 设置为false时,滚动到文本的最下方时,没有缓冲区
“scroll_past_end”: true,

// This controls what happens when pressing up or down when on the first
// or last line.
// On OS X, this value is overridden in the platform specific settings, so
// you’ll need to place this line in your user settings to override it.
// 设置成true,当光标已经在第一行时,再Up则到行首,如果光标已经在最后一行,再Down则跳到行尾
“move_to_limit_on_up_down”: false,

// Set to “none” to turn off drawing white space, “selection” to draw only the
// white space within the selection, and “all” to draw all white space
// 按space或tab时,实际会产生白色的点(一个空格一个点)或白色的横线(tab_size设置的制表符的宽度),选中状态下才能看到
// 设置为none时,什么情况下都不显示这些点和线
// 设置为selection时,只显示选中状态下的点和线
// 设置为all时,则一直显示
“draw_white_space”: “selection”,

// Set to false to turn off the indentation guides.
// The color and width of the indent guides may be customized by editing
// the corresponding .tmTheme file, and specifying the colors “guide”,
// “activeGuide” and “stackGuide”
// 制表位的对齐白线是否显示,颜色可在主题文件里设置(guide,activeGuide,stackGuide)
“draw_indent_guides”: true,

// Controls how the indent guides are drawn, valid options are
// “draw_normal” and “draw_active”. draw_active will draw the indent
// guides containing the caret in a different color.
// 制表位的对齐白线,draw_normal为一直显示,draw_active为只显示当前光标所在的代码控制域
“indent_guide_options”: [“draw_normal”],

// Set to true to removing trailing white space on save
// 为true时,保存文件时会删除每行结束后多余的空格
“trim_trailing_white_space_on_save”: false,

// Set to true to ensure the last line of the file ends in a newline
// character when saving
// 为true时,保存文件时光标会在文件的最后向下换一行
“ensure_newline_at_eof_on_save”: false,

// Set to true to automatically save files when switching to a different file
// or application
// 切换到其它文件标签或点击其它非本软件区域,文件自动保存
“save_on_focus_lost”: false,

// The encoding to use when the encoding can’t be determined automatically.
// ASCII, UTF-8 and UTF-16 encodings will be automatically detected.
// 编码时不能自动检测编码时,将自动检测ASCII, UTF-8 和 UTF-16
“fallback_encoding”: “Western (Windows 1252)”,

// Encoding used when saving new files, and files opened with an undefined
// encoding (e.g., plain ascii files). If a file is opened with a specific
// encoding (either detected or given explicitly), this setting will be
// ignored, and the file will be saved with the encoding it was opened
// with.
// 默认编码格式
“default_encoding”: “UTF-8”,

// Files containing null bytes are opened as hexadecimal by default
// 包含空字节的文件被打开默认为十六进制
“enable_hexadecimal_encoding”: true,

// Determines what character(s) are used to terminate each line in new files.
// Valid values are ‘system’ (whatever the OS uses), ‘windows’ (CRLF) and
// ‘unix’ (LF only).
// 每一行结束的时候用什么字符做终止符
“default_line_ending”: “system”,

// When enabled, pressing tab will insert the best matching completion.
// When disabled, tab will only trigger snippets or insert a tab.
// Shift+tab can be used to insert an explicit tab when tab_completion is
// enabled.
// 设置为enabled时,在一个字符串间按Tab将插入一个制表符
// 设置为true时,按Tab会根据前后环境进行代码自动匹配填补
“tab_completion”: true,

// Enable auto complete to be triggered automatically when typing.
// 代码提示
“auto_complete”: true,

// The maximum file size where auto complete will be automatically triggered.
// 代码提示的大小限制
“auto_complete_size_limit”: 4194304,

// The delay, in ms, before the auto complete window is shown after typing
// 代码提示延迟显示
“auto_complete_delay”: 50,

// Controls what scopes auto complete will be triggered in
// 代码提示的控制范围
“auto_complete_selector”: “source - comment”,

// Additional situations to trigger auto complete
// 触发代码提示的其他情况
“auto_complete_triggers”: [ {“selector”: “text.html”, “characters”: “<”} ],

// By default, auto complete will commit the current completion on enter.
// This setting can be used to make it complete on tab instead.
// Completing on tab is generally a superior option, as it removes
// ambiguity between committing the completion and inserting a newline.
// 设为false时,选择提示的代码按回车或点击可以输出出来,但选择true时不会输出而是直接换行
“auto_complete_commit_on_tab”: false,

// Controls if auto complete is shown when snippet fields are active.
// Only relevant if auto_complete_commit_on_tab is true.
// auto_complete_commit_on_tab必须为true,控制代码提示的活跃度(没明白…)
“auto_complete_with_fields”: false,

// By default, shift+tab will only unindent if the selection spans
// multiple lines. When pressing shift+tab at other times, it’ll insert a
// tab character - this allows tabs to be inserted when tab_completion is
// enabled. Set this to true to make shift+tab always unindent, instead of
// inserting tabs.
// 设置为false,使用Shift + tab总是插入制表符
“shift_tab_unindent”: true,

// If true, the selected text will be copied into the find panel when it’s
// shown.
// On OS X, this value is overridden in the platform specific settings, so
// you’ll need to place this line in your user settings to override it.
// 选中的文本按Ctrl + f时,自动复制到查找面板的文本框里
“find_selected_text”: true,

//
// User Interface Settings
//

// The theme controls the look of Sublime Text’s UI (buttons, tabs, scroll bars, etc)
// DataPackagesTheme - DefaultDefault.sublime-theme控制软件的主题
“theme”: “Default.sublime-theme”,

// Set to 0 to disable smooth scrolling. Set to a value between 0 and 1 to
// scroll slower, or set to larger than 1 to scroll faster
// 滚动的速度
“scroll_speed”: 1.0,

// Controls side bar animation when expanding or collapsing folders
// 左边边栏文件夹动画
“tree_animation_enabled”: true,

// 标签页的关闭按钮
“show_tab_close_buttons”: true,

// OS X 10.7 only: Set to true to disable Lion style full screen support.
// Sublime Text must be restarted for this to take effect.
// 针对OS X
“use_simple_full_screen”: false,

// Valid values are “system”, “enabled” and “disabled”
// 水平垂直滚动条:system和disabled为默认显示方式,enabled为自动隐藏显示
“overlay_scroll_bars”: “system”,

//
// Application Behavior Settings
//

// Exiting the application with hot_exit enabled will cause it to close
// immediately without prompting. Unsaved modifications and open files will
// be preserved and restored when next starting.
//
// Closing a window with an associated project will also close the window
// without prompting, preserving unsaved changes in the workspace file
// alongside the project.
// 热推出功能!退出时不会提示是否保存文件,而是直接退出
// 下次打开软件时,文件保持退出前的状态,没来得及保存的内容都在,但并没有真实的写在原文件里
“hot_exit”: true,

// remember_open_files makes the application start up with the last set of
// open files. Changing this to false will have no effect if hot_exit is
// true
// 软件使用最后的设定打开文件,hot_exit为true时没有效果
“remember_open_files”: true,

// OS X only: When files are opened from finder, or by dragging onto the
// dock icon, this controls if a new window is created or not.
// 针对OS X
“open_files_in_new_window”: true,

// Set to true to close windows as soon as the last file is closed, unless
// there’s a folder open within the window. This is always enabled on OS X,
// changing it here won’t modify the behavior.
// 针对OS X
“close_windows_when_empty”: true,

// 哪些文件会被显示到边栏上

// folder_exclude_patterns and file_exclude_patterns control which files
// are listed in folders on the side bar. These can also be set on a per-
// project basis.
“folder_exclude_patterns”: [“.svn”, “.git”, “.hg”, “CVS”],”file_exclude_patterns”: [“.pyc”, “.pyo”, “.exe”, “.dll”, “.obj”,”.o”, “.a”, “.lib”, “.so”, “.dylib”, “.ncb”, “.sdf”, “.suo”, “.pdb”, “.idb”, “.DS_Store”, “.class”, “.psd”, “.db”],

// These files will still show up in the side bar, but won’t be included in
// Goto Anything or Find in Files
“binary_file_patterns”: [“.jpg”, “.jpeg”, “.png”, “.gif”, “.ttf”, “.tga”, “.dds”, “.ico”, “.eot”, “.pdf”, “.swf”, “.jar”, “*.zip”],

// List any packages to ignore here. When removing entries from this list,
// a restart may be required if the package contains plugins.
// 删除你想要忽略的插件,需要重启
“ignored_packages”: [“Vintage”]}




VI 模式

启用 VI 插件编辑模式

在菜单栏中: Preferences -> Setting - User ,即可打开配置文件进行编辑,将 ignored_packages 忽略插件项的[里面内容清空:
    "ignored_packages":[]

  这样就启用了 Vim 模式,此时sublime 左下角处出现 INSERT MODE 为 VIM 的 默认 插入模式。
vim 模式快捷键说明请查看 http://feliving.github.io/Sublime-Text-3-Documentation/vintage.html
——————————————————————————————————————————————————————————————————————————
VI 编辑模式
MODE模式:(左下角体现MODE)
01. -插入模式[INSERT MODE] [默认 输入模式] [光标形态:”|” ]
写内容,输入内容
[esc]键切换成[COMMAND MODE]命令模式


    02. -命令模式[COMMAND MODE]  [按键带功能]       [光标形态:"_"]
        严格区分 -大小与特殊字符
        移动:
            [h]     光标 -左移动
            [j]     光标 -下移动
            [k]     光标 -上移动
            [l]     光标 -右移动
            [g]     光标 -移动到 第1行 ctrl+home
            [G]     光标 -移动到 最后行 ctrl+end
            1[G]    1[G]: -移动到 第1行   n[G]: -移动到 第n行 ctrl+g

        输入|插入:
            [i] 在当前位置[前面]输入|插入
            ————————————————————————————————————————————————————————
            [a] 在当前位置[后面]输入|插入
            ————————————————————————————————————————————————————————
            [I] 在当前位置,切换到[当前 行首 位置]输入|插入
            ————————————————————————————————————————————————————————
            [A] 在当前位置,切换到[当前 行尾 位置]输入|插入
            ————————————————————————————————————————————————————————
            [o] 在当前位置[下]插入一行,在[插入 行首 位置]输入|插入
            ————————————————————————————————————————————————————————
            [O] 在当前位置[上]插入一行,在[插入 行首 位置]输入|插入
            ————————————————————————————————————————————————————————
            [s] 在当前位置删除当前字符,在[当前 位置]输入|插入
            ————————————————————————————————————————————————————————
            [S] 在当前位置删除当前行字符,在[当前 行首 位置]输入|插入
            ————————————————————————————————————————————————————————
        ————————————————————————————————————————————————————————————
        复制>粘贴:
            [y][y]      复制光标当前行内容
            nun+[y][y]  从光标开始往下复制 num 行内容
            [p]         往下粘贴
            num+[p]     往下粘贴 num 次内容
            [P]         往上粘贴
            num+[P]     往上粘贴 num 次内容
        ————————————————————————————————————————————————————————————
        删除:
            [d][d]      从当前光标所在行 -删除当前行
            [d][G]      从当前光标所在行 -删除至最后行
            [d]1[G]     从当前光标所在行 -删除至第一行
            [d][w]      从当前光标位置 -删除一个单词
            [d][^]      从当前光标所在位置 -删除至行首
            [d][$]      从当前光标所在位置 -删除至行末
            num+[d][d]  从光标处 -删除num行内容
            [x]         从光标处 -删除一个字符
            3+[x]       从光标处 -删除3个某字符
        ————————————————————————————————————————————————————————————
        [u]撤销 -前一步操作[返回上一步] ctrl+y 恢复
        ————————————————————————————————————————————————————————————
        [r]单字符替换
        ————————————————————————————————————————————————————————————
        [v]视图区域
        ————————————————————————————————————————————————————————————
        [/]查找字符
        ————————————————————————————————————————————————————————————
        [:]执行语句 -弹出命令语句输入框 [Ctrl+shift+p] 命令框里输入了 :
            :语句:
                :w          保存
                :u          撤销
                :x          保存并退出当前文件
                :%s/选择字符/替换字符/g [全文档范围替换]
                            %表示 -开始到最后所有的行
                            s表示 -select选择
                            g表示 -从左到右
            ————————————————————————————————————————————————————————
            [esc]       退出语句框
        ————————————————————————————————————————————————————————————
        [i]键切换成[INSERT MODE]插入模式 -输入模式 [光标形态:"|" ]

——————————————————————————————————————————————————————————————————————————
一. 移动:
h,j,k,l: 左,下,上,右。
w: 下一个词的词首。W:下一个单词(不含标点)。
e:下一个词的词尾。E:不含标点。
b:上一个词的词首。B:不含标点。
<>: v 模式选中后进行缩进。

<<:向前向后缩进。
二. 跳转:
%: 可以匹配{},”“,(),[]之间跳转。
H、M、L:直接跳转到当前屏幕的顶部、中部、底部。
#H:跳转到当前屏的第#行。
#L:跳转到当前屏的倒数第#行。
zt: 当前编辑行置为屏顶。
zz: 当前编辑行置为屏中。
zb: 当前编辑行置为屏底。
G:直接跳转到文件的底部。
gg: 跳转到文件首。
gd: 跳转到光标所在函数和变量的定义。
():跳转到当前的行首、行尾。
{}:向上、向下跳转到最近的空行。
[{:跳转到目前区块开头。
]}:跳转到目前区块结尾。
0: 跳转到行首。
:2 : 跳转到下一行的行尾。
#:跳转到该行的第#个位置。
#G: 15G,跳转到15行。
:#:跳转到#行。
f’n’:跳转到下一个”n”字母后。
ctrl+b: 向后翻一页。
ctrl+f:向前翻一页。
ctrl+u: 向后翻半页。
ctrl+d: 向前翻半页。
ctry+e: 下滚一行。
三. 选择:
1.v: 开启可视模式。 V: 开启逐行可视模式。
2.^V: 矩形选择。
3.v3w: 选择三个字符。
4.ab:包括括号和()内的区域。
5.aB:包括括号和{}内的区域。
6.ib:括号()内的区域。
7.iB:括号{}内的区域。
8.aw:标记一个单词。
四. 编辑:
1. 新增:
i: 光标前插入。
I: 在当前行首插入。
a: 光标后插入。
A: 当前行尾插入。
O: 在当前行之前插入新行。
o: 在当前行之后插入新行。
2. 修改 c(change) 为主:
r: 替换光标所在处的字符。
R:替换光标所到之处的字符。
cw: 更改光标所在处的字到字尾处。
c#w: c3w 修改3个字符。
C:修改到行尾。
ci’:修改配对标点符号中的文本内容。
di’:删除配对标点符号中的文本内容。
yi’:复制配对标点符号中的文本内容。
vi’:选中配对标点符号中的文本内容。
s:替换当前一个光标所处字符。
#S:删除 # 行,并以新文本代替。
3. 删除 d(delete) 为主:
D:删除到行尾。
X: 每按一次,删除光标所在位置的前面一个字符。
x: 每按一次,删除光标所在位置的后面一个字符。
#x: 删除光标所在位置后面6个字符。
d^: 删至行首。
d$: 删至行尾。
dd:(剪切)删除光标所在行。
dw: 删除一个单词/光标之后的单词剩余部分。
d4w: 删除4个word。
#dd: 从光标所在行开始删除#行。
daB: 删除{}及其内的内容。
diB: 删除{}中的内容。
n1,n2 d:将n1,n2行之间的内容删除。
4. 查找:
/: 输入关键字,发现不是要找的,直接在按n,向后查找直到找到为止。
?: 输入关键字,发现不是要找的,直接在按n,向前查找直到找到为止。
*: 在当前页向后查找同一字。
#: 在当前页向前查找同一字。
5. 复制 y(yank)为主:
yw: 将光标所在之处到字尾的字符复制到缓冲区中。
#yw: 复制#个字到缓冲区。
Y:相当于yy, 复制整行。
#yy:表示复制从光标所在的该行往下数#行文字。
p: 粘贴。所有与y相关的操作必用p来结合粘贴。
]p:粘贴到合适的缩进处。
n1,n2 co n3:复制第n1行到第n2行之间的内容到第n3行后面。
6. 大小写转换:
gUU: 将当前行的字母改为大写。
guu: 将当前行的字母改为小写。
gUw: 将当前光标下的单词改为大写。
guw: 将当前光标下的单词改为小写。
a. 整篇大写:
ggguG
gg: 光标到文件第一个字符。
gu: 把选择范围全部小写。
G: 到文件结束。
b. 整篇小写:gggUG
7. 其它:
J:当前行和下一行合并成一行。
8. 移动:
n1,n2 m n3:将n1行到n2行之间的内容移至n3行下。
五. 退出:
1. w filename: 保存正在编辑的文件filename
2. wq filename: 保存后退出正在编辑的文件filename
3. q:退出不保存。
六. 窗口操作:
1. ctrl+w p: 在两个分割窗口之间来回切换。
2. ctrl+w j: 跳到下面的分割窗
3. ctrl+w h: 跳到左边的分割窗。
4. ctrl+w k: 跳到上面的分割窗。
5. ctrl+w l: 跳到右边的分割窗。
七. 折叠:
zo 將游標所在處的折疊打開。open。
zc 將游標所在處已打開的內容再度折疊起來。close。
zr 將全文的所有折疊依層次通通打開。reduce。
zm 將全文已打開的折疊依層次通通再折疊起來。more。
zR 作用和 zr 同,但會打開含巢狀折疊(折疊中又還有折疊)的所有折疊。
zM 作用和 zm 同,但對於巢狀折疊亦有作用。
zi 這是個切換,是折疊與不折疊指令間的切換。
zn 打開全文的所有折疊。fold none。
zN 這是 zn 的相對指令,回復所有的折疊。

你可能感兴趣的:(PHP,html,css)