- 论坛徽章:
- 0
|
- " use visual bell instead of beeping
- set vb
- " incremental search
- set incsearch
- " syntax highlighting
- set bg=light
- syntax on
- " autoindent
- autocmd FileType perl set autoindent|set smartindent
- " 4 space tabs
- autocmd FileType perl set tabstop=4|set shiftwidth=4|set expandtab|set softtabstop=4
- " show matching brackets
- autocmd FileType perl set showmatch
- " show line numbers
- autocmd FileType perl set number
- " check perl code with :make
- autocmd FileType perl set makeprg=perl\ -c\ %\ $*
- autocmd FileType perl set errorformat=%f:%l:%m
- autocmd FileType perl set autowrite
- " dont use Q for Ex mode
- map Q :q
- " make tab in v mode ident code
- vmap <tab> >gv
- vmap <s-tab> <gv
- " make tab in normal mode ident code
- nmap <tab> I<tab><esc>
- nmap <s-tab> ^i<bs><esc>
- " paste mode - this will avoid unexpected effects when you
- " cut or copy some text from one window and paste it in Vim.
- set pastetoggle=<F11>
- Most of the features are self-evident when you open your next perl script. Other features deserve some comments:
- Use ":make" to check your code: it will call "perl -c" to verify your code and, if there are any erros, the cursor will be positioned in the offending line.
- Get rid of the Ex mode: I often entered in Ex mode when I wanted to type ":q"...
- Indent code with tabs: Use "v" to select a region, or indent line by line in normal mode. (Use shift-tab to unindent.)
- Press F11 to toggle the "paste mode", disabling autoindent so that any text you paste won't loose its original layout.
复制代码
[ 本帖最后由 POLOGG 于 2006-3-31 22:52 编辑 ] |
|