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(
{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(
{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: */