惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - Franky
U
Unit 42
MyScale Blog
MyScale Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
量子位
IT之家
IT之家
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Recent Announcements
Recent Announcements
V
Visual Studio Blog
G
Google Developers Blog
Last Week in AI
Last Week in AI
雷峰网
雷峰网
博客园 - 聂微东
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
J
Java Code Geeks
博客园 - 司徒正美
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
月光博客
月光博客
aimingoo的专栏
aimingoo的专栏

jdhao's digital space

Conversion between base64 and OpenCV or PIL Image 腾讯云对象存储博客图床开启 CDN 加速(不需要购买额外域名) Search and Replace in Multiple Files in Vim/Neovim Change Table Column Width in LaTeX Image or Table Side by Side in LaTeX LaTeX 并排显示图像或表格 Firenvim: Neovim inside Your Browser Content inside HTML tags missing in Latest Hugo? Creating Markdown Front Matter with Ultisnips Labelme JSON 标注格式转 voc XML 格式 Nifty Nvim Techniques That Make My Life Easier -- Series 6 macOS 下如何为视频制作字幕 Running Command Asynchronously inside Neovim Resolving Merge Conflict after Git Stash Pop Pylint: command not found? A Hands-on Experience with Neovim's Built-in LSP Support How to Convert PDF to Images with Imagemagick 互联网上常用缩略语集锦 File Backup in Neovim Converting PDF Pages to Images with Poppler Nifty Nvim Techniques That Make My Life Easier -- Series 5 Neovim Configuration for System-wide Use How to sort a list of tuple or list in Python -- lambda or itemgetter? Building A Vim Statusline from Scratch 人类第一颗原子弹爆炸始末 Distributed Training in PyTorch with Horovod Learning Expect Programming Essential Knowledge about SSH Nifty LaTeX Techniques -- Series 1 更改 Adsense 邮寄地址,重新寄送 PIN
Sublime Text Tips and Tricks That Will Make Your Life Easier
2017-10-21 · via jdhao's digital space

In this post I will share some tips on how to use Sublime Text on Windows. These tips are collected over time and will be updated frequently (hopefully).

Open and close side bar#

You can use Ctrl+K+B to open and close the side bar. The correct way to use this shortcut: hold on Ctrl, first press K and then press B.

Change the case of selected text#

To turn the selected text into upper case, use the shortcut key Ctrl+K+U. Here is how exactly to operate: first you need to press Ctrl, then press K and release it, finally, you press the U key, do not release the Ctrl key in the process. To turn the selected text into lower case, use the shortcut key Ctrl+K+L.

To turn the selected text into title case, you need to add a custom key binding. Open your key binding file and add the following setting:

{ "keys": ["ctrl+k", "ctrl+t"], "command": "title_case" }

Then you can convert the selected text into title case with the shortcut Ctrl+K+T.

Select text between quotation marks#

You can use the Plugin BracketHighlighter to achieve what you want. First, you need to install this Plugin. Then, go to Preferences --> Key Bindings. Add the following key binding setting,

{
    "no_outside_adj": null,
    "keys": ["ctrl+alt+super+s"],
    "command": "bh_key",
    "args":
    {
        "lines" : true,
        "plugin":
        {
            "type": ["__all__"],
            "command": "bh_modules.bracketselect"
        }
    }
}

Then you can use the shortcut key Ctrl+Alt+Super+S to select texts between quotation marks.

Show current file in side bar#

In the current file, right click your mouse. In the pop-up contextual menu, choose Reveal in Side Bar and the file will be highlighted in the side bar.

Prevent a file from opening in the tab when I right click on it#

One annoying thing when using Sublime-Text is that when you want to right click on a file in the sidebar to call its contextual menu, the file is automatically opened in the tab. If you want to disable this behaviour, you can add an option in your user Settings:

{"preview_on_click": false,}

After using this option, you can left click on a file twice to open it.

Open a file in the current folder quickly#

You can press Ctrl+P and start to type the filename. See the following image,

Find a string in all files in current project#

Press Ctrl+Shift+F, you will see three boxes: Find, Where and Replace. Type the string you want to search in Find box , and specify the folder you want to search in Where box.

The search result will be presented in a page called Find Results. If you want to go to specific file which contains the searched string, double click on the line.

This tip is based on a wonderful stackoverflow post.

Rename the current file#

When you are editing a file, you may wish to change its name. First you should [reveal it in the side bar](# Show current file in side bar). Then right click on the file and rename it.

Quick goto a class or a function#

By pressing Ctrl+R, we can navigate to functions/class in the current file. This ability is really powerful and it works for multiple source file types such as \*.py, \*.md, \*.cpp.

Edit a variable simultaneously#

Sometimes, we want to rename a variable name, but it have several occurrences in the source code. It is easy to select all occurrences of a variable in Sublime Text. You should first point the cursor to the variable and then hit Alt+F3. Now you can edit the variable simultaneously.

Quickly go to a line#

Press Ctrl+G and enter the line number, then press Enter, you will go to that line.

Unindent lines#

You have two choices. The first is to use Shift+Tab, which works only for multiple selected lines. In order to make it work for a single line, set

"shift_tab_unindent": true,

in your user settings.

You can also use Ctrl+[ to un-indent lines on Windows and Linux (Ctrl+] is used to indent lines).

Stop hidden files and folders from showing in the sidebar#

By default, hidden file and folders (files and folders starting with a dot) are shown in the sidebar. According to this Stackoverflow post, to disable this behaviour, you need to edit the User settings (just click Preferences -> Settings): add the following options to the User setting file:

"file_exclude_patterns":
    [
        "*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj","*.o","*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo", "*.pdb", "*.idb", ".DS_Store",
        "*.class", "*.psd", "*.db", "*.sublime-workspace", ".*"
    ],
"folder_exclude_patterns":
    [
        ".svn", ".git", ".hg", "CVS", ".*"
    ]

The pattern .* matches any file or folder which starts with a dot. The above options works effectively to prevent the hidden files and folders from showing up in your sidebar. You can also add your own custom patterns to the two exclude lists.

References#