自从第一天使用Vim 3年以来,这个天堂一直在欺骗我.每当我尝试通过Shift>当该行的第一个字符以“#”开始时,无论文件类型(.PHP,.txt等)如何,都不起作用.因为#用于
PHP中的评论,我也用它来装饰文本文件,如:
原文链接:https://www.f2er.com/bash/384033.html# This is a comment ### 1. Instruction one # ------------ this is an sample --------------
我在Ubuntu中使用Vim 7.2,使用以下.vimrc设置
Syntax on set t_Co=256 set incsearch set hlsearch set number set nowrap set nowrapscan set ignorecase set et set sw=4 set smarttab set smartindent set autoindent set textwidth=0 set noequalalways set formatoptions=1 set lbr set vb set foldmethod=marker
谢谢!