⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 svn-dev.vim

📁 subversion-1.4.3-1.tar.gz 配置svn的源码
💻 VIM
字号:
" This file sets vim up to use subversion's coding style.  It can be applied on" a per buffer basis with :source svn-dev.vim, or can be source from ~/.vimrc to" apply settings to all files vim uses.  For other variation try :help autocmd."" TODO: Try to find a way to wrap comments without putting a * on the next line," since most of subversion doesn't use that style.  (Note that taking cro out of" formatoptions won't quite work, because then comments won't be wrapped by" default)."" Expand tab characters to spacesset expandtab" Tab key moves 8 spacesset tabstop=8 " '>>' moves 4 spacesset shiftwidth=4" Wrap lines at 78 columns."   78 so that vim won't swap over to the right before it wraps a line.set textwidth=78" What counts as part of a word (used for tag matching, and motion commands)set iskeyword=a-z,A-Z,48-57,_,.,-,>" How to wrap lines"   t=wrap lines, c=wrap comments, inserting comment leader, r=insert comment"   leader after an <ENTER>, o=Insert comment leader after an 'o', q=Allow"   formatting of comments with 'gq'set formatoptions=tcroq" Use C style indentingset cindent" Use the following rules to do C style indenting"   (Note that an s mean number*shiftwidth)"   >=normal indent,"   e=indent inside braces(brace at end of line),"   n=Added to normal indent if no braces,"   f=opening brace of function,"   {=opening braces,"   }=close braces (from opening),"   ^s=indent after brace, if brace is on column 0,"   := case labels from switch, ==statements after case,"   t=function return type,"   +=continuation line,"   c=comment lines from opener,"   (=unclosed parens (0 means match),"   u=same as ( but for second set of parens"   "   Try :help cinoptions-valuesset cinoptions=>1s,e0,n-2,f0,{.5s,}0,^-.5s,=.5s,t0,+1s,c3,(0,u0,\:2" The following modelines can also be used to set the same options."/*" * vim:ts=8:sw=4:expandtab:tw=78:fo=tcroq cindent" * vim:isk=a-z,A-Z,48-57,_,.,-,>" * vim:cino=>1s,e0,n-2,f0,{.5s,}0,^-.5s,=.5s,t0,+1s,c3,(0,u0,\:2" */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -