-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path0012 - ctags.vim.json
More file actions
27 lines (27 loc) · 1.36 KB
/
0012 - ctags.vim.json
File metadata and controls
27 lines (27 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"script_id": "12",
"display_name": "ctags.vim",
"summary": "Display function name in the title bar.",
"name": "ctags.vim",
"script_type": "utility",
"description": "This script uses exuberant ctags to build the list of tags for the current file. CursorHold event is then used to update titlestring.\n\nUpon sourcing an autocommand is created with event type CursorHold. It updates the title string using the function GetTagName. Another autocommand of type BufEnter is created to generate tags for *.c, *.cpp and *.h files.\n\nFunction GenerateTags builds an array of tag names.\n\nFunction GetTagName takes line number argument and returns the tag name.",
"install_details": "Before sourcing the script do:\n let g:ctags_path='/path/to/ctags'\n let g:ctags_args='-I __declspec+' (or whatever other additional arguments you want to pass to ctags)\n\n:CTAGS command starts the script.",
"versions": [
{
"url": "http://www.vim.org/scripts/download_script.php?src_id=14",
"filename": "ctags.vim",
"script_version": "1.0",
"date": "2001-06-05",
"vim_version": "5.7",
"author": {
"user_id": "27",
"user_name": "lyosha",
"first_name": "Alexey",
"last_name": "Marinichev",
"email": "vim@lyosha.no-ip.org",
"homepage": ""
},
"release_notes": "Initial upload"
}
]
}