├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── icons ├── icon-class.svg ├── icon-constant.svg ├── icon-converter.svg ├── icon-enum.svg ├── icon-function.svg ├── icon-generics.svg ├── icon-interface.svg ├── icon-iterator.svg ├── icon-macro.svg ├── icon-method.svg ├── icon-namespace.svg ├── icon-struct.svg ├── icon-typedef.svg ├── icon-union.svg ├── icon-variable.svg └── symbol-icons.woff ├── keymaps └── symbols-tree-view.cson ├── lib ├── .ctags ├── main.coffee ├── symbols-context-menu.coffee ├── symbols-tree-view.coffee ├── tag-generator.coffee ├── tag-parser.coffee └── tree-view.coffee ├── menus └── symbols-tree-view.cson ├── package.json ├── screencast.gif ├── screenshot.png ├── styles └── symbols-tree-view.less └── vendor ├── universal-ctags-darwin ├── universal-ctags-linux └── universal-ctags-win32.exe /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/README.md -------------------------------------------------------------------------------- /icons/icon-class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/icon-class.svg -------------------------------------------------------------------------------- /icons/icon-constant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/icon-constant.svg -------------------------------------------------------------------------------- /icons/icon-converter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/icon-converter.svg -------------------------------------------------------------------------------- /icons/icon-enum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/icon-enum.svg -------------------------------------------------------------------------------- /icons/icon-function.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/icon-function.svg -------------------------------------------------------------------------------- /icons/icon-generics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/icon-generics.svg -------------------------------------------------------------------------------- /icons/icon-interface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/icon-interface.svg -------------------------------------------------------------------------------- /icons/icon-iterator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/icon-iterator.svg -------------------------------------------------------------------------------- /icons/icon-macro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/icon-macro.svg -------------------------------------------------------------------------------- /icons/icon-method.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/icon-method.svg -------------------------------------------------------------------------------- /icons/icon-namespace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/icon-namespace.svg -------------------------------------------------------------------------------- /icons/icon-struct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/icon-struct.svg -------------------------------------------------------------------------------- /icons/icon-typedef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/icon-typedef.svg -------------------------------------------------------------------------------- /icons/icon-union.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/icon-union.svg -------------------------------------------------------------------------------- /icons/icon-variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/icon-variable.svg -------------------------------------------------------------------------------- /icons/symbol-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/icons/symbol-icons.woff -------------------------------------------------------------------------------- /keymaps/symbols-tree-view.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/keymaps/symbols-tree-view.cson -------------------------------------------------------------------------------- /lib/.ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/lib/.ctags -------------------------------------------------------------------------------- /lib/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/lib/main.coffee -------------------------------------------------------------------------------- /lib/symbols-context-menu.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/lib/symbols-context-menu.coffee -------------------------------------------------------------------------------- /lib/symbols-tree-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/lib/symbols-tree-view.coffee -------------------------------------------------------------------------------- /lib/tag-generator.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/lib/tag-generator.coffee -------------------------------------------------------------------------------- /lib/tag-parser.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/lib/tag-parser.coffee -------------------------------------------------------------------------------- /lib/tree-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/lib/tree-view.coffee -------------------------------------------------------------------------------- /menus/symbols-tree-view.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/menus/symbols-tree-view.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/package.json -------------------------------------------------------------------------------- /screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/screencast.gif -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/screenshot.png -------------------------------------------------------------------------------- /styles/symbols-tree-view.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/styles/symbols-tree-view.less -------------------------------------------------------------------------------- /vendor/universal-ctags-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/vendor/universal-ctags-darwin -------------------------------------------------------------------------------- /vendor/universal-ctags-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/vendor/universal-ctags-linux -------------------------------------------------------------------------------- /vendor/universal-ctags-win32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xndcn/symbols-tree-view/HEAD/vendor/universal-ctags-win32.exe --------------------------------------------------------------------------------