FilePrompt
Sublime Text open/save file prompt with tab completion and configurable suggestions variants.
Details
Installs
- Total 222
- Win 141
- Mac 42
- Linux 39
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 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 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
subl-open-file-prompt
Sublime Text 3 plugin, which implements 'Linux-styled' file open and save prompt with suggestions and autocompletion by 'Tab' key.
It has three different types of suggestions list (configurable in keyboard shortcut): * scratch buffer * matched files and dirs displayed in columns in scratch buffer * files could be selected by mouse also * status bar * matched files and dirs displayed only in status bar * quick panel * matched files and directories displayed in quick panel
Basic idea and source for improvements was taken from prompt_open_file_path.py from cg-sublime by Chris Guilbeau.
Usage
Installation
From Package control
It is preffered way of installation. * Install Package control package. * Go to Preferences - “Package Control” - “Install Package” - FilePrompt, and press Enter.
From source
Clone git repository and put subl-open-file-prompt directory inside Packages directory of Sublime Text, which could be located by selecting “Preferences - Browse Packages…” command from Sublime Text menu.
Keybindings
Suggested keybindings:
{ "keys": ["ctrl+o"], "command": "open_file_prompt" },
{ "keys": ["ctrl+shift+s"], "command": "save_file_prompt" },
It is possible to add one or more arguments for both commands. For example:
{ "keys": ["ctrl+o"], "command": "open_file_prompt", "args": { "suggestions_list_type": 0, "directories_first" : true } }
Values for suggestions_list_type: * 0 - scratch buffer (default) * 1 - status line * 2 - quick panel
Values for directories_first: * true - show directories before files in suggestions list (default) * false - show files and directories in alphabetical order
Changelog
- 0.0.9
- input panel does not need “tab_completions” set to “False” in settings to work correctly
- 0.0.8
- (scratch) added ability to open file/select directory by mouse click
- small improvements and bug fixes
- 0.0.1 to 0.0.7
- implementation steps