homepage faq contribute bugs questions Git for Windows v2.11.0 Release Notes Latest update: December 1st 2016 Introduction These release notes describe issues specific to the Git for Windows release. The release notes covering the history of the core…
写python代码时,希望缩进是4个空格,而不是制表符tab, 在vim中,我们只需要简单配置一下就ok了,打开~/.vimrc加上下面的几行(如果已经有了,修改一下数值就行了). set tabstop=4 set softtabstop=4 set shiftwidth=4 set expandtab 在复制代码到vim中出现恶心的自动缩进: 解决办法:在~/.vimrc中添加,下面这一行,这样在插入模式下,按F9就会进入粘贴模式,不会自动缩进了 set pastetoggle=<F9>…