Sublime Text 3 配置文件(4)

// 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": false,

// If true, the copy and cut commands will operate on the current line
    // when the selection is empty, rather than doing nothing.
    //复制与剪切的
    "copy_with_empty_selection": 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,

// When drag_text is enabled, clicking on selected text will begin a
    // drag-drop operation
    //拖动文本
    "drag_text": true,

//
    // User Interface Settings
    //

// The theme controls the look of Sublime Text's UI (buttons, tabs, scroll bars, etc)
    //主题
    "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,

// Makes tabs with modified files more visible
    //高亮未保存文件
    "highlight_modified_tabs": false,
    // 标签页的关闭按钮
    "show_tab_close_buttons": true,

// Show folders in the side bar in bold
    //在侧边栏显示文件夹
    "bold_folder_labels": false,

// 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 10.7
    "use_simple_full_screen": false,

// OS X only. Valid values are true, false, and "auto". Auto will enable
    // the setting when running on a screen 2880 pixels or wider (i.e., a
    // Retina display). When this setting is enabled, OpenGL is used to
    // accelerate drawing. Sublime Text must be restarted for changes to take
    // effect.
    //针对OS X,使用OpenGL画图,需重启
    "gpu_window_buffer": "auto",

// Valid values are "system", "enabled" and "disabled"
    //延迟滚动条
    "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
    //记忆之前打开的文件
    "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,

// OS X only: This controls if an empty window is created at startup or not.
    //在打开程序的时候新建窗口,针对OS X
    "create_window_at_startup": true,

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/18459.html