展示定义
视觉展示定义
详细信息
安装
- 总计 2K
- Win 937
- Mac 377
- Linux 370
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
README
显示定义扩展
显示定义扩展扩展原始定义查找路径:具有类和重载选择的行
基本上,该插件适用于您Sublime Text支持的任何语法,因为它基于内置函数的结果,并打开一个不可见的面板来解析函数信息。它仅显示同一文件扩展名中的符号,因此当您编写C++时不会看到JS函数
用法
使用F10
在内置方法和此插件之间切换
安装
使用包控制:安装包
命令,并搜索显示定义扩展
演示
从
到
设置
{
"DEBUG": false,
"show_path": true,
// Scope name and file path will display on two lines
// if length of scope name exceed this number
"max_len_to_wrap": 60,
// Number of items displayed at a time
"max_list_item": 20,
// Manually setting parsing syntax
"syntax_lists":
[
[
"C++.sublime-syntax",
[
"h",
"c",
"hpp",
"cpp"
]
]
],
// File that won't be show
// "exclude_files":["css"],
// Showing the same file type or both in related_list
"related_list": [
["h", "c", "hpp", "cpp"],
["js", "css"]
]
}