个人工具

“用户讨论:Corey”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
第1行: 第1行:
 
我的一些设置保存,以后修改!
 
我的一些设置保存,以后修改!
  
plugin<br>---------------<br>taglist.vim<br>encode_japan.vim<br>readcsv.vim<br>NERD_commenter.vim<br>supertab.vim<br>util_corey.vim
+
plugin<br>---------------<br>taglist.vim<br>encode_japan.vim (encode_corey)<br>readcsv.vim<br>NERD_commenter.vim<br>supertab.vim<br>util_corey.vim
  
colors<br>---------<br>corey.vim(追加下面行)
+
colors<br>---------<br>corey.vim<br>hi CursorLine term=underline cterm=underline gui=underline ctermbg=NONE guibg=NONE
 
+
hi CursorLine term=underline cterm=underline gui=underline ctermbg=NONE guibg=NONE<br>
+
  
 
exe &amp; dll<br>---------<br>ctags.exe<br>gvimext.dll<br>iconv.dll<br>intl2.dll<br>msvcr71.dll<br>libint.dll<br>VisVim.dll
 
exe &amp; 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>awiconsprosetup.exe
+
installer<br>---------------<br>gvim.nsis<br>vi.cmd(??)
  
vi.cmd
+
==========util==========================================<br>"args **/*.jsp<br>"argdo %s/old/target/c | update
  
====================================================<br>"args **/*.jsp<br>"argdo %s/old/target/c | update
+
"g/^/exec "s/^/".strpart("000000000000".line("."). " ",len("000000000000".line("."). " ")-len(line("$"))-1 ) <br>"g/^/exec "s/^/".strpart(line(".")." ", 0, len(line("$")) + 1)
  
" Section: utillity tools {{{1<br>" ===================================================<br>func Search_Word()<br> let w = expand("&lt;cword&gt;")<br> "exe "vimgrep " w "*.java *.jsp *.php *.c *.h *.htm" <br> exe "vimgrep " w "**/*.*" <br> exe 'copen' <br>endfun
+
" Section: utillity tools {{{1<br>" ======================================================<br>func Search_Word()<br> let w = expand("&lt;cword&gt;")<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 TrimSpaceLine()<br> execute 'g/^\s*$/d'<br>endfun<br>func TrimEndSpace()<br> execute '%s/\s*$//'<br>endfun
第23行: 第21行:
 
func NewTabpage()<br> execute 'tabnew'<br>endfun
 
func NewTabpage()<br> execute 'tabnew'<br>endfun
  
func Insert_0_Number()<br> execute 'g/^/exec "s/^/".strpart("000000000000".line("."). " ",<br> len("000000000000".line("."). " ")-len(line("$"))-1 ) '<br>endfun
+
func Insert_0_Number()<br> execute 'g/^/exec "s/^/".strpart("000000000000".line("."). " ",len("000000000000".line("."). " ")-len
  
func Insert_Number()<br> execute 'g/^/exec "s/^/".strpart(line(".")." ", 0, len(line("$")) + 1)'<br>endfun
+
(line("$"))-1 ) '<br>endfun
 +
 
 +
func Insert_Number()<br> "execute 'g/^/exec "s/^/".strpart(line(".")." ", 0, len(line("$")) + 1)'<br> execute 'g/^/exec "s/^/".strpart(" ".line("."). " ",len(" ".line("."). " ")-len(line
 +
 
 +
("$"))-1 ) '<br>endfun
  
 
func SaveP()<br> <br> call inputsave()<br> let Pname = input('Save Project name?')<br> call inputrestore()
 
func SaveP()<br> <br> call inputsave()<br> let Pname = input('Save Project name?')<br> call inputrestore()
第39行: 第41行:
 
func SetHighlightCurrentLine()<br> call CancleHighlightCurrentLine()<br> hi CurrentLine ctermbg=darkgrey guibg=darkgrey term=NONE cterm=NONE gui=NONE<br> au! Cursorhold * exe 'match CurrentLine /\%' . line('.') . 'l.*/'<br> au! InsertEnter * match none<br> set ut=60<br>endfun
 
func SetHighlightCurrentLine()<br> call CancleHighlightCurrentLine()<br> hi CurrentLine ctermbg=darkgrey guibg=darkgrey term=NONE cterm=NONE gui=NONE<br> au! Cursorhold * exe 'match CurrentLine /\%' . line('.') . 'l.*/'<br> au! InsertEnter * match none<br> set ut=60<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 &lt;silent&gt;' . ',te' . '&nbsp;:call TrimEndSpace()&lt;cr&gt;'<br>execute 'vnoremap &lt;silent&gt;' . ',te' . ' &lt;ESC&gt;:call TrimEndSpace()&lt;cr&gt;'
+
func SetSimsun()<br> set guifont=NSimSun:h14:cGB2312<br> set printfont=NSimSun:h13:cGB2312<br>endfun
  
" set up the mappings to trim space line<br>execute 'nnoremap &lt;silent&gt;' . ',tl' . '&nbsp;:call TrimSpaceLine()&lt;cr&gt;'<br>execute 'vnoremap &lt;silent&gt;' . ',tl' . ' &lt;ESC&gt;:call TrimSpaceLine()&lt;cr&gt;'
+
func SetGothic()<br> set guifont=MS_Gothic:h14:cSHIFTJIS<br> set printfont=MS_Gothic:h13:cSHIFTJIS<br>endfun
  
" set up the mappings to Cancle and set Highlight Current Line<br>execute 'nnoremap &lt;silent&gt;' . 'mm' . '&nbsp;:call CancleHighlightCurrentLine()&lt;cr&gt;'<br>execute 'vnoremap &lt;silent&gt;' . 'mm' . ' &lt;ESC&gt;:call CancleHighlightCurrentLine()&lt;cr&gt;'
+
" 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 &lt;silent&gt;' . ',te' . ' :call TrimEndSpace()&lt;cr&gt;'<br>execute 'vnoremap &lt;silent&gt;' . ',te' . ' &lt;ESC&gt;:call TrimEndSpace()&lt;cr&gt;'
  
execute 'nnoremap &lt;silent&gt;' . 'mn' . '&nbsp;:call SetHighlightCurrentLine()&lt;cr&gt;'<br>execute 'vnoremap &lt;silent&gt;' . 'mn' . ' &lt;ESC&gt;:call SetHighlightCurrentLine()&lt;cr&gt;'
+
" set up the mappings to trim space line<br>execute 'nnoremap &lt;silent&gt;' . ',tl' . ' :call TrimSpaceLine()&lt;cr&gt;'<br>execute 'vnoremap &lt;silent&gt;' . ',tl' . ' &lt;ESC&gt;:call TrimSpaceLine()&lt;cr&gt;'
  
execute 'nnoremap &lt;silent&gt;' . 'mv' . '&nbsp;:call SetHighlightUnderLine()&lt;cr&gt;'<br>execute 'vnoremap &lt;silent&gt;' . 'mv' . ' &lt;ESC&gt;:call SetHighlightUnderLine()&lt;cr&gt;'
+
" set up the mappings to Cancle and set Highlight Current Line<br>execute 'nnoremap &lt;silent&gt;' . 'mm' . ' :call CancleHighlightCurrentLine()&lt;cr&gt;'<br>execute 'vnoremap &lt;silent&gt;' . 'mm' . ' &lt;ESC&gt;:call CancleHighlightCurrentLine()&lt;cr&gt;'
  
"NewTabpage<br>execute 'nnoremap &lt;silent&gt;' . 'tt' . '&nbsp;:call NewTabpage()&lt;cr&gt;'<br>execute 'vnoremap &lt;silent&gt;' . 'tt' . ' &lt;ESC&gt;:call NewTabpage()&lt;cr&gt;'
+
execute 'nnoremap &lt;silent&gt;' . 'mn' . ' :call SetHighlightCurrentLine()&lt;cr&gt;'<br>execute 'vnoremap &lt;silent&gt;' . 'mn' . ' &lt;ESC&gt;:call SetHighlightCurrentLine()&lt;cr&gt;'
  
" Section: Menu item setup {{{1<br>" ===========================================================================<br>"check if the user wants the menu to be displayed <br>if 1&nbsp;!= 0
+
execute 'nnoremap &lt;silent&gt;' . 'mv' . ' :call SetHighlightUnderLine()&lt;cr&gt;'<br>execute 'vnoremap &lt;silent&gt;' . 'mv' . ' &lt;ESC&gt;:call SetHighlightUnderLine()&lt;cr&gt;'
  
let menuRoot = '&amp;Plugin.&amp;util'<br> <br> execute 'menu &lt;silent&gt; '. menuRoot .'.-Sep-&nbsp;:'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.Trim\ End\ Space&lt;TAB&gt;' .<br>escape(',te', '\') . '&nbsp;:call TrimEndSpace()&lt;CR&gt;'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.Trim\ Space\ Line&lt;TAB&gt;' . <br>escape(',tl', '\') . '&nbsp;:call TrimSpaceLine()&lt;CR&gt;'
+
"NewTabpage<br>execute 'nnoremap &lt;silent&gt;' . 'tt' . ' :call NewTabpage()&lt;cr&gt;'<br>execute 'vnoremap &lt;silent&gt;' . 'tt' . ' &lt;ESC&gt;:call NewTabpage()&lt;cr&gt;'
  
execute 'menu &lt;silent&gt; '. menuRoot .'.-Sep2-&nbsp;:'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.Cancle\ Highlight\ CurrentLine&lt;TAB&gt;' .<br> escape('mm', '\') . '&nbsp;:call CancleHighlightCurrentLine()&lt;CR&gt;'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.Set\ Highlight\ CurrentLine&lt;TAB&gt;' .<br> escape('mn', '\') . '&nbsp;:call SetHighlightCurrentLine()&lt;CR&gt;'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.Set\ Underline\ CurrentLine&lt;TAB&gt;' .<br> escape('mv', '\') . '&nbsp;:call SetHighlightUnderLine()&lt;CR&gt;'
+
" Section: Menu item setup {{{1<br>" ===========================================================================<br>"check if the user wants the menu to be displayed <br>if 1 != 0
  
execute 'menu &lt;silent&gt; '. menuRoot .'.-Sep3-&nbsp;:'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.New\ Tabpage&lt;TAB&gt;' . escape('tt', '\') .<br> '&nbsp;:call NewTabpage()&lt;CR&gt;'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.Insert\ Number,\ 0\ Ahead&lt;TAB&gt;' .<br> escape(' ', '\') . '&nbsp;:call Insert_0_Number()&lt;CR&gt;'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.Insert\ Number,\ No\ 0&lt;TAB&gt;' .<br> escape(' ', '\') . '&nbsp;:call Insert_Number()&lt;CR&gt;'
+
let menuRoot = '&amp;Plugin.&amp;util'<br> <br> execute 'menu &lt;silent&gt; '. menuRoot .'.-Sep- :'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.Trim\ End\ Space&lt;TAB&gt;' . escape(',te', '\') . ' :call
  
endif<br>" vim: set foldmethod=marker&nbsp;:
+
TrimEndSpace()&lt;CR&gt;'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.Trim\ Space\ Line&lt;TAB&gt;' . escape(',tl', '\') . ' :call
  
----
+
TrimSpaceLine()&lt;CR&gt;'
  
gvimrc---------------------<br>
+
execute 'menu &lt;silent&gt; '. menuRoot .'.-Sep2- :'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.Cancle\ Highlight\ CurrentLine&lt;TAB&gt;' . escape('mm', '\') . '
  
"edited by corey<br>"<br>"<br>source $VIMRUNTIME/mswin.vim<br>source $VIMRUNTIME/gvimrc_example.vim
+
:call CancleHighlightCurrentLine()&lt;CR&gt;'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.Set\ Highlight\ CurrentLine&lt;TAB&gt;' . escape('mn', '\') . ' :call
  
" カラー設定:<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
+
SetHighlightCurrentLine()&lt;CR&gt;'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.Set\ Underline\ CurrentLine&lt;TAB&gt;' . escape('mv', '\') . ' :call
  
:call SetHighlightUnderLine()<br>"set cul<br>"au InsertEnter * set nocul<br>"au InsertLeave * set cul
+
SetHighlightUnderLine()&lt;CR&gt;'
 +
 
 +
execute 'menu &lt;silent&gt; '. menuRoot .'.-Sep3- :'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.New\ Tabpage&lt;TAB&gt;' . escape('tt', '\') . ' :call NewTabpage()
 +
 
 +
&lt;CR&gt;'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.Insert\ Number,\ 0\ Ahead&lt;TAB&gt;' . escape(' ', '\') . ' :call
 +
 
 +
Insert_0_Number()&lt;CR&gt;'<br> execute 'nmenu &lt;silent&gt; '. menuRoot .'.Insert\ Number,\ No\ 0&lt;TAB&gt;' . escape(' ', '\') . ' :call
 +
 
 +
Insert_Number()&lt;CR&gt;'
 +
 
 +
amenu 1.51 PopUp.-SEP_COREY- &lt;Nop&gt;<br> amenu &lt;script&gt; &lt;silent&gt; 1.52 PopUp.Trim\ &amp;End\ Space :call TrimEndSpace()&lt;CR&gt;<br> amenu &lt;script&gt; &lt;silent&gt; 1.53 PopUp.Trim\ Space\ Li&amp;ne :call TrimSpaceLine()&lt;CR&gt;<br> amenu &lt;script&gt; &lt;silent&gt; 1.54 PopUp.Insert\ Nu&amp;mber :call Insert_Number()&lt;CR&gt;
 +
 
 +
amenu &lt;script&gt; &lt;silent&gt; 1.56 PopUp.Font.&amp;Simsun :call SetSimsun()&lt;CR&gt;<br> amenu &lt;script&gt; &lt;silent&gt; 1.57 PopUp.Font.&amp;Gothic :call SetGothic()&lt;CR&gt;<br> endif<br>" vim: set foldmethod=marker :
 +
 
 +
--------encode_corey-----------------<br>elseif &amp;encoding ==? 'cp936'<br>let value = 'ucs-bom,utf-8,cp936,gb18030,big5,euc-jp,euc-kr,latin1'<br>"set encoding=japan<br>----------gvimrc---------------------<br>" vim:set ts=8 sts=2 sw=2 tw=0: (この行に関しては:help modelineを参照)<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
 +
 
 +
":call SetHighlightUnderLine()<br>set cul<br>au InsertEnter * set nocul<br>au InsertLeave * set cul
  
 
"au GUIEnter * simalt ~x "maximum the initial window
 
"au GUIEnter * simalt ~x "maximum the initial window
第79行: 第99行:
 
" input the tab, need to comment out [set expandtab]<br>inoremap &lt;S-t&gt; &lt;tab&gt;
 
" input the tab, need to comment out [set expandtab]<br>inoremap &lt;S-t&gt; &lt;tab&gt;
  
if has("statusline")<br> set statusline=%&lt;%f\ %h%m%r%=%{\"[\".(&amp;fenc==\"\"?&amp;enc:&amp;fenc).\"]\ \"}%k\ %-14.(%l,%c%V%)\ %P<br>endif<br><br>
+
if has("statusline")<br> set statusline=%&lt;%f\ %h%m%r%=%{\"[\".(&amp;fenc==\"\"?&amp;enc:&amp;fenc).\"]\ \"}%k\ %-14.(%l,%c%V%)\ %P<br>endif
 +
 
 +
"set listchars=tab:&gt;-,trail:-<br>"---------------------------------------------------------------------------<br>" フォント設定:<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
 
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>
 
SetOutPath $INSTDIR<br> File ${VIMRT}\gvimrc<br><br>

2008年3月11日 (二) 11:02的版本

我的一些设置保存,以后修改!

plugin
---------------
taglist.vim
encode_japan.vim (encode_corey)
readcsv.vim
NERD_commenter.vim
supertab.vim
util_corey.vim

colors
---------
corey.vim
hi CursorLine term=underline cterm=underline gui=underline ctermbg=NONE guibg=NONE

exe & dll
---------
ctags.exe
gvimext.dll
iconv.dll
intl2.dll
msvcr71.dll
libint.dll
VisVim.dll

installer
---------------
gvim.nsis
vi.cmd(??)

==========util==========================================
"args **/*.jsp
"argdo %s/old/target/c | update

"g/^/exec "s/^/".strpart("000000000000".line("."). " ",len("000000000000".line("."). " ")-len(line("$"))-1 )
"g/^/exec "s/^/".strpart(line(".")." ", 0, len(line("$")) + 1)

" Section: utillity tools {{{1
" ======================================================
func Search_Word()
let w = expand("<cword>")
exe "vimgrep " w "**/*.java **/*.jsp **/*.php **/*.c **/*.h **/*.htm"
"exe "vimgrep " w "**/*.*"
exe 'copen'
endfun

func TrimSpaceLine()
execute 'g/^\s*$/d'
endfun
func TrimEndSpace()
execute '%s/\s*$//'
endfun

func SelectTabpage()
execute 'tabn'
endfun

func NewTabpage()
execute 'tabnew'
endfun

func Insert_0_Number()
execute 'g/^/exec "s/^/".strpart("000000000000".line("."). " ",len("000000000000".line("."). " ")-len

(line("$"))-1 ) '
endfun

func Insert_Number()
"execute 'g/^/exec "s/^/".strpart(line(".")." ", 0, len(line("$")) + 1)'
execute 'g/^/exec "s/^/".strpart(" ".line("."). " ",len(" ".line("."). " ")-len(line

("$"))-1 ) '
endfun

func SaveP()

call inputsave()
let Pname = input('Save Project name?')
call inputrestore()

execute 'mksession! ~\'.Pname.'.vim'
execute 'wviminfo! ~\'.Pname.'.viminfo'
endfun

func ReloadP()

call inputsave()
let Pbname = input('Load Project name?')
call inputrestore()

execute 'source ~\'.Pbname.'.vim'
execute 'rviminfo ~\'.Pbname.'.viminfo'
endfun

func CancleHighlightCurrentLine()
au! Cursorhold
match none
endfun

func SetHighlightUnderLine()
call CancleHighlightCurrentLine()
"highlight CurrentLine guibg=darkgrey guifg=white (or whatever colors you want)
hi CurrentLine term=underline cterm=underline gui=underline ctermbg=NONE guibg=NONE
au! Cursorhold * exe 'match CurrentLine /\%' . line('.') . 'l.*/'
au! InsertEnter * match none
set ut=60
endfun

func SetHighlightCurrentLine()
call CancleHighlightCurrentLine()
hi CurrentLine ctermbg=darkgrey guibg=darkgrey term=NONE cterm=NONE gui=NONE
au! Cursorhold * exe 'match CurrentLine /\%' . line('.') . 'l.*/'
au! InsertEnter * match none
set ut=60
endfun

func SetSimsun()
set guifont=NSimSun:h14:cGB2312
set printfont=NSimSun:h13:cGB2312
endfun

func SetGothic()
set guifont=MS_Gothic:h14:cSHIFTJIS
set printfont=MS_Gothic:h13:cSHIFTJIS
endfun

" Section: Comment mapping setup {{{1
" ===========================================================================
" This is where the mappings calls are made that set up the commenting key
" mappings.
" set up the mappings to trim space at the line's end
execute 'nnoremap <silent>' . ',te' . ' :call TrimEndSpace()<cr>'
execute 'vnoremap <silent>' . ',te' . ' <ESC>:call TrimEndSpace()<cr>'

" set up the mappings to trim space line
execute 'nnoremap <silent>' . ',tl' . ' :call TrimSpaceLine()<cr>'
execute 'vnoremap <silent>' . ',tl' . ' <ESC>:call TrimSpaceLine()<cr>'

" set up the mappings to Cancle and set Highlight Current Line
execute 'nnoremap <silent>' . 'mm' . ' :call CancleHighlightCurrentLine()<cr>'
execute 'vnoremap <silent>' . 'mm' . ' <ESC>:call CancleHighlightCurrentLine()<cr>'

execute 'nnoremap <silent>' . 'mn' . ' :call SetHighlightCurrentLine()<cr>'
execute 'vnoremap <silent>' . 'mn' . ' <ESC>:call SetHighlightCurrentLine()<cr>'

execute 'nnoremap <silent>' . 'mv' . ' :call SetHighlightUnderLine()<cr>'
execute 'vnoremap <silent>' . 'mv' . ' <ESC>:call SetHighlightUnderLine()<cr>'

"NewTabpage
execute 'nnoremap <silent>' . 'tt' . ' :call NewTabpage()<cr>'
execute 'vnoremap <silent>' . 'tt' . ' <ESC>:call NewTabpage()<cr>'

" Section: Menu item setup {{{1
" ===========================================================================
"check if the user wants the menu to be displayed
if 1 != 0

let menuRoot = '&Plugin.&util'

execute 'menu <silent> '. menuRoot .'.-Sep- :'
execute 'nmenu <silent> '. menuRoot .'.Trim\ End\ Space<TAB>' . escape(',te', '\') . ' :call

TrimEndSpace()<CR>'
execute 'nmenu <silent> '. menuRoot .'.Trim\ Space\ Line<TAB>' . escape(',tl', '\') . ' :call

TrimSpaceLine()<CR>'

execute 'menu <silent> '. menuRoot .'.-Sep2- :'
execute 'nmenu <silent> '. menuRoot .'.Cancle\ Highlight\ CurrentLine<TAB>' . escape('mm', '\') . '

call CancleHighlightCurrentLine()<CR>'
execute 'nmenu <silent> '. menuRoot .'.Set\ Highlight\ CurrentLine<TAB>' . escape('mn', '\') . ' :call

SetHighlightCurrentLine()<CR>'
execute 'nmenu <silent> '. menuRoot .'.Set\ Underline\ CurrentLine<TAB>' . escape('mv', '\') . ' :call

SetHighlightUnderLine()<CR>'

execute 'menu <silent> '. menuRoot .'.-Sep3- :'
execute 'nmenu <silent> '. menuRoot .'.New\ Tabpage<TAB>' . escape('tt', '\') . ' :call NewTabpage()

<CR>'
execute 'nmenu <silent> '. menuRoot .'.Insert\ Number,\ 0\ Ahead<TAB>' . escape(' ', '\') . ' :call

Insert_0_Number()<CR>'
execute 'nmenu <silent> '. menuRoot .'.Insert\ Number,\ No\ 0<TAB>' . escape(' ', '\') . ' :call

Insert_Number()<CR>'

amenu 1.51 PopUp.-SEP_COREY- <Nop>
amenu <script> <silent> 1.52 PopUp.Trim\ &End\ Space :call TrimEndSpace()<CR>
amenu <script> <silent> 1.53 PopUp.Trim\ Space\ Li&ne :call TrimSpaceLine()<CR>
amenu <script> <silent> 1.54 PopUp.Insert\ Nu&mber :call Insert_Number()<CR>

amenu <script> <silent> 1.56 PopUp.Font.&Simsun :call SetSimsun()<CR>
amenu <script> <silent> 1.57 PopUp.Font.&Gothic :call SetGothic()<CR>
endif
" vim: set foldmethod=marker :


encode_corey-----------------
elseif &encoding ==? 'cp936'
let value = 'ucs-bom,utf-8,cp936,gb18030,big5,euc-jp,euc-kr,latin1'
"set encoding=japan
----------gvimrc---------------------
" vim:set ts=8 sts=2 sw=2 tw=0: (この行に関しては:help modelineを参照)
"---------------------------------------------------------------------------
"edited by corey
"
"
source $VIMRUNTIME/mswin.vim
source $VIMRUNTIME/gvimrc_example.vim

set encoding=japan
" カラー設定:
colorscheme corey
set nobk
set number
set shiftwidth=2
set softtabstop=4
set tabstop=4
autocmd BufNewFile,BufRead *.vb set ft=vbnet
autocmd BufNewFile,Bufread *.csv call CSVSELECT()
set nowrap
set expandtab
set noignorecase
set guioptions+=b

":call SetHighlightUnderLine()
set cul
au InsertEnter * set nocul
au InsertLeave * set cul

"au GUIEnter * simalt ~x "maximum the initial window

map <C-tab> :call SelectTabpage()<CR>
map <F6> :call SaveP()<CR>
map <F5> :call ReloadP()<CR>

map <F3> :call Search_Word()<CR>
"map <F2> :call TrimSpaceLine()<CR>
"map <F4> :call TrimEndSpace()<CR>
map <F8> :TlistToggle<CR>
map <F9> :call CSV_HighlightPrevCol()<CR>
map <F10> :call CSV_HighlightNextCol()<CR>
map <F11> :call CSV_goto_field()<CR>
map <F12> :call CSV_SE()<CR>

" input the tab, need to comment out [set expandtab]
inoremap <S-t> <tab>

if has("statusline")
set statusline=%<%f\ %h%m%r%=%{\"[\".(&fenc==\"\"?&enc:&fenc).\"]\ \"}%k\ %-14.(%l,%c%V%)\ %P
endif

"set listchars=tab:>-,trail:-
"---------------------------------------------------------------------------
" フォント設定:
"
if has('win32')

===========

File ${VIMRT}\gvim.exe
File ${VIMRT}\install.exe
File ${VIMRT}\uninstal.exe
File ${VIMRT}\vimrun.exe
File ${VIMRT}\xxd.exe
File ${VIMRT}\diff.exe
File ${VIMRT}\vimtutor.bat
File ${VIMRT}\README.txt
File ${VIMRT}\uninstal.txt
File ${VIMRT}\*.vim
File ${VIMRT}\rgb.txt
File ${VIMRT}\ctags.exe
File ${VIMRT}\iconv.dll
File ${VIMRT}\intl2.dll
File ${VIMRT}\msvcr71.dll

SetOutPath $INSTDIR
File ${VIMRT}\gvimrc