Chinaunix首页 | 论坛 | 博客
  • 博客访问: 102175
  • 博文数量: 18
  • 博客积分: 861
  • 博客等级: 上士
  • 技术积分: 290
  • 用 户 组: 普通用户
  • 注册时间: 2011-02-17 22:13
文章分类

全部博文(18)

文章存档

2011年(18)

分类: LINUX

2011-03-04 19:11:31

请把脚本放置到内核源文件的根目录下

实现了功能

. 设置了行号

. 设置了鼠标可用

. 加入了内核的tags包

----------------------------------------------------------------------------------------------------------------

tags使用技巧

1. $ ctags –R .                         在当前目录下生成tags包

2. $ vi –t             在终端查找包中变量

3. :ts / :ta                           查找并列出所有变量

4. :tp                                   跳到列表中前一变量位置


5. :tn                                   跳到列表中下一变量位置

6. Ctrl + ]                               查找当前光标所在变量

7. Ctrl + T                              返回之前位置

--------------------------------------------------------------------------------------------------------------

vim中的模式行

第一种格式

 [text]{white}{vi:|vim|ex:}[white]{option}

[text]                      any text or empty

{white}                   at least one blank character( or )

{vi:|vim:|ex:}            the string "vi:", "vim" or "ex:"

[white]                    optional white space

{options}                a list of option settings, separated with white space or ":",

                                where each part between ':' is the argument for a ":set"

                               command (can be empty)

Example:

                vi:noai:sw=3 ts=6

第二中形式

  [text]{white}{vi:|vim:|ex:}[white]se[t]{options}:[text]

[text]                       any text or empty

{white}                     at least one blank character( or )

{vi:|vim:|ex:}             the string "vi:", "vim" or "ex:"

[white]                     optional white space

se[t]                         the strings "set" or "se"(note the space)

{options}                 a list of options, separated with white space, which is the argument for

                                a ":set" command

:                               a colon

[text]                       any text or emty


Example:

        /*  vim: set ai tw=75: */


阅读(2070) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

amarant2011-04-10 19:25:20

cscope也常用