├── .gitignore ├── Default (Linux).sublime-keymap ├── Default (OSX).sublime-keymap ├── Default (Windows).sublime-keymap ├── FilesystemAutocompletion.sublime-commands ├── FilesystemAutocompletion.sublime-settings ├── LICENSE.txt ├── Main.sublime-menu ├── README.md ├── fscompletion.py ├── fsutils.py ├── messages.json ├── messages ├── 0.2.3.txt └── 0.2.4.txt ├── test.txt └── testing ├── test with spaces ├── dir with spaces │ └── another with spaces │ │ ├── file │ │ ├── file with spaces │ │ ├── file" │ │ ├── file"name │ │ ├── file% │ │ ├── file' │ │ ├── file'name │ │ ├── file[ │ │ ├── file[name │ │ ├── file] │ │ └── file]name └── file with spaces ├── test.txt └── test ├── dir with spaces └── another with spaces │ ├── file │ ├── file with spaces │ ├── file" │ ├── file"name │ ├── file% │ ├── file' │ ├── file'name │ ├── file[ │ ├── file[name │ ├── file] │ └── file]name └── file with spaces /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /Default (Linux).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingo/sublime-fscompletion/HEAD/Default (Linux).sublime-keymap -------------------------------------------------------------------------------- /Default (OSX).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingo/sublime-fscompletion/HEAD/Default (OSX).sublime-keymap -------------------------------------------------------------------------------- /Default (Windows).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingo/sublime-fscompletion/HEAD/Default (Windows).sublime-keymap -------------------------------------------------------------------------------- /FilesystemAutocompletion.sublime-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingo/sublime-fscompletion/HEAD/FilesystemAutocompletion.sublime-commands -------------------------------------------------------------------------------- /FilesystemAutocompletion.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingo/sublime-fscompletion/HEAD/FilesystemAutocompletion.sublime-settings -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingo/sublime-fscompletion/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Main.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingo/sublime-fscompletion/HEAD/Main.sublime-menu -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingo/sublime-fscompletion/HEAD/README.md -------------------------------------------------------------------------------- /fscompletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingo/sublime-fscompletion/HEAD/fscompletion.py -------------------------------------------------------------------------------- /fsutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingo/sublime-fscompletion/HEAD/fsutils.py -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingo/sublime-fscompletion/HEAD/messages.json -------------------------------------------------------------------------------- /messages/0.2.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingo/sublime-fscompletion/HEAD/messages/0.2.3.txt -------------------------------------------------------------------------------- /messages/0.2.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingo/sublime-fscompletion/HEAD/messages/0.2.4.txt -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingo/sublime-fscompletion/HEAD/test.txt -------------------------------------------------------------------------------- /testing/test with spaces/dir with spaces/another with spaces/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test with spaces/dir with spaces/another with spaces/file with spaces: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test with spaces/dir with spaces/another with spaces/file": -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test with spaces/dir with spaces/another with spaces/file"name: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test with spaces/dir with spaces/another with spaces/file%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test with spaces/dir with spaces/another with spaces/file': -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test with spaces/dir with spaces/another with spaces/file'name: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test with spaces/dir with spaces/another with spaces/file[: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test with spaces/dir with spaces/another with spaces/file[name: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test with spaces/dir with spaces/another with spaces/file]: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test with spaces/dir with spaces/another with spaces/file]name: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test with spaces/file with spaces: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingo/sublime-fscompletion/HEAD/testing/test.txt -------------------------------------------------------------------------------- /testing/test/dir with spaces/another with spaces/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test/dir with spaces/another with spaces/file with spaces: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test/dir with spaces/another with spaces/file": -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test/dir with spaces/another with spaces/file"name: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test/dir with spaces/another with spaces/file%: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test/dir with spaces/another with spaces/file': -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test/dir with spaces/another with spaces/file'name: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test/dir with spaces/another with spaces/file[: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test/dir with spaces/another with spaces/file[name: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test/dir with spaces/another with spaces/file]: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test/dir with spaces/another with spaces/file]name: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test/file with spaces: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------