FileList
API for manipualting lists of files
Details
Installs
- Total 8K
- Win 5K
- Mac 1K
- Linux 1K
Aug 17 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | Jul 27 | Jul 26 | Jul 25 | Jul 24 | Jul 23 | Jul 22 | Jul 21 | Jul 20 | Jul 19 | Jul 18 | Jul 17 | Jul 16 | Jul 15 | Jul 14 | Jul 13 | Jul 12 | Jul 11 | Jul 10 | Jul 9 | Jul 8 | Jul 7 | Jul 6 | Jul 5 | Jul 4 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 2 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 3 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 2 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
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.