免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2398 | 回复: 2
打印 上一主题 下一主题

.vimrc for perl programmers(perlmonk) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-03-31 20:29 |只看该作者 |倒序浏览

  1. " use visual bell instead of beeping
  2. set vb

  3. " incremental search
  4. set incsearch

  5. " syntax highlighting
  6. set bg=light
  7. syntax on

  8. " autoindent
  9. autocmd FileType perl set autoindent|set smartindent

  10. " 4 space tabs
  11. autocmd FileType perl set tabstop=4|set shiftwidth=4|set expandtab|set softtabstop=4

  12. " show matching brackets
  13. autocmd FileType perl set showmatch

  14. " show line numbers
  15. autocmd FileType perl set number

  16. " check perl code with :make
  17. autocmd FileType perl set makeprg=perl\ -c\ %\ $*
  18. autocmd FileType perl set errorformat=%f:%l:%m
  19. autocmd FileType perl set autowrite

  20. " dont use Q for Ex mode
  21. map Q :q

  22. " make tab in v mode ident code
  23. vmap <tab> >gv
  24. vmap <s-tab> <gv

  25. " make tab in normal mode ident code
  26. nmap <tab> I<tab><esc>
  27. nmap <s-tab> ^i<bs><esc>

  28. " paste mode - this will avoid unexpected effects when you
  29. " cut or copy some text from one window and paste it in Vim.
  30. set pastetoggle=<F11>

  31. Most of the features are self-evident when you open your next perl script. Other features deserve some comments:


  32. 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.
  33. Get rid of the Ex mode: I often entered in Ex mode when I wanted to type ":q"...
  34. Indent code with tabs: Use "v" to select a region, or indent line by line in normal mode. (Use shift-tab to unindent.)
  35. 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 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2006-04-01 13:08 |只看该作者
还有这篇
http://wiki.perlchina.org/main/show/vim+for+perl+developers
另外是这篇文章里的链接 http://use.perl.org/~Phred/journal/29147 ( 旧金山 Perl monger 小组最近刚办了一个 Perl IDE 的 talk , 那里面有 vim 不少有用的小技巧 )

论坛徽章:
0
3 [报告]
发表于 2006-04-01 15:05 |只看该作者
原帖由 Qiang 于 2006-4-1 13:08 发表
还有这篇
http://wiki.perlchina.org/main/show/vim+for+perl+developers
另外是这篇文章里的链接 http://use.perl.org/~Phred/journal/29147 ( 旧金山 Perl monger 小组最近刚办了一个  ...


原贴子在这里,还有截图
http://mamchenkov.net/wordpress/ ... -perl-developers/1/
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP