FileList
API for manipualting lists of files
Details
Installs
- Total 8K
- Win 5K
- Mac 2K
- Linux 2K
Mar 29 | Mar 28 | Mar 27 | Mar 26 | Mar 25 | Mar 24 | Mar 23 | Mar 22 | Mar 21 | Mar 20 | Mar 19 | Mar 18 | Mar 17 | Mar 16 | Mar 15 | Mar 14 | Mar 13 | Mar 12 | Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | Mar 3 | Mar 2 | Mar 1 | Feb 28 | Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 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 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
Linux | 1 | 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 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
Sublime FileList plugin
Library for displaying list of files.
Demo
WARNING
This plugin provides “rename file” functionality. If you enter rename mode you should type new file name and hit “tab” (not “enter”) for complete renaming.
Installation
This plugin is part of sublime-enhanced plugin set. You can install sublime-enhanced and this plugin will be installed automatically.
If you would like to install this package separately check “Installing packages separately” section of sublime-enhanced package.
Commands
All commands will works when file list is visible.
Description | Keyboard shortcut |
---|---|
Open file or folder | ctrl+o |
Preview file | ctrl+p |
Delete file | ctrl+d |
Rename file | ctrl+r |
Complete file rename | tab |
Insert short file name to view | alt+p |
Insert relative file name to view | alt+shift+p |
Insert file name to view | alt+ctrl+p |
Insert absolute file name to view | alt+ctrl+shift+p |
Dependencies
API
FileList class methods:
init(callback, open = None, preview = None, text = None, open_if_one_file = True, callers = [], on_create = None)
Create file list.
Arguments:
callback
- callback function that provides list of files; callback should receive no arguments;open
- open callback; if no open callback provided default open callback will be usedpreview
- preview callback; if no preview callback provided default preview callback will be usedtext
- initial text in panelopen_if_one_file
- bool; if only one file found should be it opened right away or displayed in listcallers
- callers stack; refer to sublime-quick-search-enhanced for informationon_create
- callback that will be executed after panel will be created showed
show()
Show created panel.
refresh()
Refresh file list
preview_file(panel)
Preview file from QuickSearch panel and return opened view.
Arguments:
panel
- QuickSearch panel.
Result:
A sublime view object that was created to show the file.