vim ctags 存储自己信息的方法
我想使用 vim 和 ctags 将我自己的信息存储在一个文件夹中。有什么办法可以实现这个吗?
示例:我想插入一条有关 mysql 的信息,我正在创建一个文件或其他新结构,将来可以由 ctags 解析。
I want to use vim and ctags for storing my own information in one folder. Is any way to implement this ?
Example: i want to insert a piece of information about mysql, im creating a file or other new structure which can be parsed by ctags in future.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。您可以通过两种方式实现它,如下所示
作为主题:MySql 作为这条信息的标题
练习我们将手动完成
数据文件内容
标签文件内容
toc文件内容
现在加载toc文件将光标放在MySql的M上并按Ctrl]它应该自动加载数据文件并将光标放在主题的开头: MySql
您可以创建任意数量的数据文件,每个数据文件具有任意数量的 TOPIC: 字符串,并且您可以创建任意数量的模式(实际上)设计您自己的语言并让 ctags 自动为您创建标签。格式
Yes. You can implement it in two ways as follows
as TOPIC: MySql as the heading for this piece of info
excercise we will do it manually
data file contents
tags file contents
toc file contents
Now load up the toc file place your cursor on M of MySql and hit Ctrl ] it should automatically load up the data file and place your cursor at the begining of TOPIC: MySql
You can create any number of data files, each having any number of TOPIC: strings and you can create any number of patterns (in effect) devise your own language and have ctags automatically create a tags for you.FORMAT