查看“用户讨论:Corey”的源代码
来自Ubuntu中文
←
用户讨论:Corey
跳到导航
跳到搜索
因为以下原因,您没有权限编辑该页面:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
我的一些设置保存,以后修改!(当然,如果你是用vim的,也可以参照一下,呵呵 不过大多数我都是在windows下用的,linux下没有测试,应该大多数可用,不忙的时候好好整理!) plugin<br>"---------------<br>taglist.vim<br>encode_corey.vim<br>readcsv_corey.vim<br>NERD_commenter.vim<br>supertab.vim<br>util_corey.vim<br>winmanager.vim colors<br>"---------<br>corey.vim<br>" Last Change: 2008 March 12<br>" This idea comes from evening scheme.<br>hi CursorLine term=underline cterm=underline gui=underline ctermbg=NONE guibg=NONE<br>hi CuMe ctermbg=darkgrey guibg=darkgrey term=NONE cterm=NONE gui=NONE exe & dll<br>"---------<br>ctags.exe<br>gvimext.dll<br>iconv.dll<br>intl2.dll<br>msvcr71.dll<br>libint.dll<br>VisVim.dll installer<br>"---------------<br>gvim.nsis<br>vi.cmd(??) ==========util=======================<br>"===============================<br>" corey 2008/03/14<br>"===============================<br>"args **/*.jsp<br>"argdo %s/old/target/c | update " Section: utillity tools {{{1<br>" ===========================================================================<br>func Search_Word()<br> let w = expand("<cword>")<br> exe "vimgrep " w "**/*.java **/*.jsp **/*.php **/*.c **/*.h **/*.htm" <br> "exe "vimgrep " w "**/*.*" <br> exe 'copen' <br>endfun func TrimSpaceLine()<br> execute 'g/^\s*$/d'<br>endfun<br>func TrimEndSpace()<br> execute '%s/\s*$//'<br>endfun func SelectTabpage()<br> execute 'tabn'<br>endfun func NewTabpage()<br> execute 'tabnew'<br> if exists("s:ToggleFlag")<br> if s:ToggleFlag >= 1<br> execute 'WMToggle'<br> endif<br> endif<br>endfun func Insert_0_Number()<br> execute 'g/^/exec "s/^/".strpart("000000000000".line("."). " ",len("000000000000".line("."). " ")-len (line("$"))-1 ) '<br>endfun func Insert_Number()<br> execute 'g/^/exec "s/^/".strpart(" ".line("."). " ",len(" ".line("."). " ")-len(line ("$"))-1 ) '<br>endfun func SaveP()<br> call inputsave()<br> let Pname = input('Save Project name?')<br> call inputrestore()<br> execute 'mksession! ~\'.Pname.'.vim'<br> execute 'wviminfo! ~\'.Pname.'.viminfo'<br>endfun func ReloadP()<br> call inputsave()<br> let Pbname = input('Load Project name?')<br> call inputrestore()<br> execute 'source ~\'.Pbname.'.vim'<br> execute 'rviminfo ~\'.Pbname.'.viminfo'<br>endfun func CancleMarkCL()<br> match none<br>endfun "func SetHighlightUnderLine()<br> "call CancleMarkCL()<br> ""highlight CurrentLine guibg=darkgrey guifg=white (or whatever colors you want)<br> "hi CurrentLine term=underline cterm=underline gui=underline ctermbg=NONE guibg=NONE<br> "au! Cursorhold * exe 'match CurrentLine /\%' . line('.') . 'l.*/'<br> "au! InsertEnter * match none<br> "set ut=60<br>"endfun func SetMarkCL()<br> call StorePos()<br> hi CurrentLine ctermbg=darkgrey guibg=darkgrey term=NONE cterm=NONE gui=NONE<br> exe 'match CuMe /\%' . line('.') . 'l.*/'<br>endfun func SetSimsun()<br> set guifont=NSimSun:h14:cGB2312<br> set printfont=NSimSun:h13:cGB2312<br>endfun func SetGothic()<br> set guifont=MS_Gothic:h14:cSHIFTJIS<br> set printfont=MS_Gothic:h13:cSHIFTJIS<br>endfun func SetUTF8()<br> set encoding=utf-8<br>endfun func StorePos()<br> execute 'let g:save_cursor = getpos(".")'<br>endfun func GobackPos()<br> execute 'call setpos(".", g:save_cursor)'<br>endfun func AllToggle()<br> if exists("s:ToggleFlag")<br> if s:ToggleFlag >= 1<br> let s:ToggleFlag = 0<br> else<br> let s:ToggleFlag = 1<br> endif<br> else<br> let s:ToggleFlag = 1<br> endif<br> execute 'WMToggle'<br>endfun " Section: Comment mapping setup {{{1<br>" ===========================================================================<br>" This is where the mappings calls are made that set up the commenting key<br>" mappings.<br>" set up the mappings to trim space at the line's end<br>execute 'nnoremap <silent>' . ',te' . ' :call TrimEndSpace()<cr>'<br>execute 'vnoremap <silent>' . ',te' . ' <ESC>:call TrimEndSpace()<cr>' " set up the mappings to trim space line<br>execute 'nnoremap <silent>' . ',tl' . ' :call TrimSpaceLine()<cr>'<br>execute 'vnoremap <silent>' . ',tl' . ' <ESC>:call TrimSpaceLine()<cr>' " mark one line<br>execute 'nnoremap <silent>' . 'mn' . ' :call CancleMarkCL()<cr>'<br>execute 'vnoremap <silent>' . 'mn' . ' <ESC>:call CancleMarkCL()<cr>'<br>execute 'nnoremap <silent>' . 'mm' . ' :call SetMarkCL()<cr>'<br>execute 'vnoremap <silent>' . 'mm' . ' <ESC>:call SetMarkCL()<cr>'<br>execute 'nnoremap <silent>' . 'm,' . ' :call GobackPos()<cr>'<br>execute 'vnoremap <silent>' . 'm,' . ' <ESC>:call GobackPos()<cr>' "NewTabpage<br>execute 'nnoremap <silent>' . 'tt' . ' :call NewTabpage()<cr>'<br>execute 'vnoremap <silent>' . 'tt' . ' <ESC>:call NewTabpage()<cr>' " Section: Menu item setup {{{1<br>" ================================================<br>"check if the user wants the menu to be displayed <br>if 1 != 0 let menuRoot = '&Plugin.&util'<br> <br> "execute 'menu <silent> '. menuRoot .'.-Sep- :'<br> execute 'nmenu <silent> '. menuRoot .'.Trim\ Trailing\ Space<TAB>' . escape(',te', '\') . ' :call TrimEndSpace()<CR>'<br> execute 'nmenu <silent> '. menuRoot .'.Trim\ Space\ Line<TAB>' . escape(',tl', '\') . ' :call TrimSpaceLine()<CR>' execute 'menu <silent> '. menuRoot .'.-Sep2- :'<br> execute 'nmenu <silent> '. menuRoot .'.Cancle\ Mark<TAB>' . escape('mn', '\') . ' :call CancleMarkCL() <CR>'<br> execute 'nmenu <silent> '. menuRoot .'.Mark\ CurrentLine<TAB>' . escape('mm', '\') . ' :call SetMarkCL ()<CR>'<br> execute 'nmenu <silent> '. menuRoot .'.Go\ Mark<TAB>' . escape('m,', '\') . ' :call GobackPos()<CR>'<br> "execute 'nmenu <silent> '. menuRoot .'.Set\ Underline\ CurrentLine<TAB>' . escape('mv', '\') . ' :call SetHighlightUnderLine()<CR>' execute 'menu <silent> '. menuRoot .'.-Sep3- :'<br> execute 'nmenu <silent> '. menuRoot .'.New\ Tabpage<TAB>' . escape('tt', '\') . ' :call NewTabpage() <CR>'<br> execute 'nmenu <silent> '. menuRoot .'.Insert\ Number,\ 0\ Ahead<TAB>' . escape(' ', '\') . ' :call Insert_0_Number()<CR>'<br> execute 'nmenu <silent> '. menuRoot .'.Insert\ Number,\ No\ 0<TAB>' . escape(' ', '\') . ' :call Insert_Number()<CR>' amenu 1.51 PopUp.-SEP_COREY- <Nop><br> amenu <script> <silent> 1.52 PopUp.Trim\ &End\ Space :call TrimEndSpace()<CR><br> amenu <script> <silent> 1.53 PopUp.Trim\ Space\ Li&ne :call TrimSpaceLine()<CR><br> amenu <script> <silent> 1.54 PopUp.Insert\ Nu&mber :call Insert_Number()<CR><br> amenu <script> <silent> 1.56 PopUp.Font.&Simsun :call SetSimsun()<CR><br> amenu <script> <silent> 1.57 PopUp.Font.&Gothic :call SetGothic()<CR><br> amenu <script> <silent> 1.58 PopUp.UTF-&8 :call SetUTF8()<CR><br> endif " Section: short key item setup {{{1<br>" =======================================<br>noremap <C-tab> :call SelectTabpage()<CR><br>noremap <F6> :call SaveP()<CR><br>noremap <F5> :call ReloadP()<CR> noremap <F3> :call Search_Word()<CR> <br>"map <F2> :call TrimSpaceLine()<CR> <br>"map <F4> :call TrimEndSpace()<CR> <br>noremap <F8> :call AllToggle()<CR> " vim: set foldmethod=marker : "--------encode_corey-----------------<br>elseif &encoding ==? 'cp936'<br>let value = 'ucs-bom,utf-8,cp936,gb18030,big5,euc-jp,euc-kr,latin1'<br>"set encoding=japan "----------gvimrc--------------<br>" vim:set ts=8 sts=2 sw=2 tw=0: <br>"------------------------------<br>"edited by corey<br>"<br>"<br>source $VIMRUNTIME/mswin.vim<br>source $VIMRUNTIME/gvimrc_example.vim set encoding=japan<br>" カラー設定:<br>colorscheme corey<br>set nobk<br>set number<br>set shiftwidth=2<br>set softtabstop=4<br>set tabstop=4<br>autocmd BufNewFile,BufRead *.vb set ft=vbnet<br>autocmd BufNewFile,Bufread *.csv call CSVSELECT() <br>set nowrap<br>set expandtab<br>set noignorecase<br>set guioptions+=b<br>let g:winManagerWindowLayout='FileExplorer|TagList' set cul<br>au InsertEnter * set nocul<br>au InsertLeave * set cul "au GUIEnter * simalt ~x "maximum the initial window if has("statusline")<br> set statusline=%<%f\ %h%m%r%=%{\"[\".(&fenc==\"\"?&enc:&fenc).\"]\ \"}%k\ %-14.(%l,%c%V%)\ %P<br>endif set tags=tags,./tags " フォント設定:<br>"<br>if has('win32')<br><br> ====== =========== ====== File ${VIMRT}\gvim.exe<br> File ${VIMRT}\install.exe<br> File ${VIMRT}\uninstal.exe<br> File ${VIMRT}\vimrun.exe<br> File ${VIMRT}\xxd.exe<br> File ${VIMRT}\diff.exe<br> File ${VIMRT}\vimtutor.bat<br> File ${VIMRT}\README.txt<br> File ${VIMRT}\uninstal.txt<br> File ${VIMRT}\*.vim<br> File ${VIMRT}\rgb.txt<br> File ${VIMRT}\ctags.exe<br> File ${VIMRT}\iconv.dll<br> File ${VIMRT}\intl2.dll<br> File ${VIMRT}\msvcr71.dll SetOutPath $INSTDIR<br> File ${VIMRT}\gvimrc<br><br>
返回
用户讨论:Corey
。
导航菜单
页面操作
用户页
讨论
阅读
查看源代码
历史
页面操作
用户页
讨论
更多
工具
个人工具
登录
导航
首页
最近更改
随机页面
页面分类
帮助
搜索
编辑
编辑指南
沙盒
新闻动态
字词处理
工具
链入页面
相关更改
用户贡献
日志
查看用户组
特殊页面
页面信息