http://vim.wikia.com/wiki/VimTip396 precondition: set hlsearch" Show all tabs:/\t" Show trailing whitespace:/\s\+$" Show trailing whitespace only after some text (ignores blank lines):/\S\zs\s\+$" Show spaces before a tab:/ \+\ze\t…
install Vundle.vim mkdir ~/.vim/bundle git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim create .vimrc if it not exist. add the following setting into .vimrc set nocompatible " be iMproved, required filetype off " requi…
Source: http://ipestov.com/the-best-plugins-for-sublime-text/ Good day, everyone! I tried to collect the best ST plugins, which really allows to improve your workflow. I searched many sites and here's what I did. WebInspector Amazing tool for debagg…
Artistic Style 1.24 A Free, Fast and Small Automatic Formatterfor C, C++, C#, and Java Source Code 项目网址:http://astyle.sourceforge.net/astyle.html Astyle可以从命令行运行,由于它用C++编写,也可以作为C++类用在C++程序中. 概述 1. 行尾结束符 格式化后的行尾结束符和格式化之前的是一样的,如果原文件中有多种行尾结束符,则采用最常用的那种.A…
写python代码时,希望缩进是4个空格,而不是制表符tab, 在vim中,我们只需要简单配置一下就ok了,打开~/.vimrc加上下面的几行(如果已经有了,修改一下数值就行了). set tabstop=4 set softtabstop=4 set shiftwidth=4 set expandtab 在复制代码到vim中出现恶心的自动缩进: 解决办法:在~/.vimrc中添加,下面这一行,这样在插入模式下,按F9就会进入粘贴模式,不会自动缩进了 set pastetoggle=<F9>…