gitextract_1a51ib0w/ ├── .gitignore ├── .npmignore ├── CHANGES.md ├── Default (Linux).sublime-keymap ├── Default (OSX).sublime-keymap ├── Default (Windows).sublime-keymap ├── Default.sublime-commands ├── Default.sublime-keymap ├── FuzzyFilePath.md ├── FuzzyFilePath.sublime-settings ├── LICENSE ├── Main.sublime-menu ├── ProjectListener.py ├── QueryCompletionListener.py ├── README.md ├── TestRunner.py ├── ViewListener.py ├── command_goto_file.py ├── command_insert_path.py ├── command_rebuild_cache.py ├── command_replace_region.py ├── command_show_context.py ├── command_show_current_settings.py ├── command_show_info.py ├── common/ │ ├── __init__.py │ ├── config.py │ ├── path.py │ ├── selection.py │ ├── settings.py │ ├── string.py │ └── verbose.py ├── completion.py ├── controller.py ├── current_state.py ├── expression.py ├── project/ │ ├── FileCache.py │ ├── FileCacheWorker.py │ ├── __init__.py │ └── validate.py ├── query.py └── test/ ├── __init__.py ├── integration/ │ ├── __init__.py │ ├── get_context_test.py │ ├── tests.py │ └── tools.py ├── mock/ │ └── project/ │ ├── app/ │ │ ├── boot.js │ │ ├── index.html │ │ ├── latex.tex │ │ ├── src/ │ │ │ ├── coffee/ │ │ │ │ ├── coffee.coffee │ │ │ │ ├── module.coffee │ │ │ │ └── other.coffee │ │ │ ├── common.js │ │ │ ├── main.js │ │ │ ├── tools.js │ │ │ └── ts/ │ │ │ ├── another.ts │ │ │ ├── module.ts │ │ │ ├── other.ts │ │ │ ├── tsconfig.json │ │ │ └── typescript.ts │ │ └── styles/ │ │ ├── index.css │ │ ├── partials/ │ │ │ ├── common.scss │ │ │ └── media.scss │ │ └── styles.css │ └── bower_components/ │ ├── angular/ │ │ └── index.js │ └── lib/ │ ├── component/ │ │ ├── component.html │ │ ├── component.scss │ │ ├── componentCtrl.js │ │ └── componentModel.js │ ├── css/ │ │ ├── index.css │ │ └── styles.css │ └── index.js ├── tools.py └── unit/ ├── __init__.py ├── debug_test.py ├── get_closest_folder_test.py ├── query_test.py └── tests.py