dired
A Sublime Text 3 plugin that displays a directory in a view, allowing easy file manipulation, loosely copied from emacs dired mode.
Details
Installs
- Total 3K
- Win 1K
- Mac 1K
- Linux 474
Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 1 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 |
Linux | 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 | 0 | 1 | 0 | 0 | 1 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Last working clone of dired, provided by the developer (who has removed the original repo).
Forks and/or PRs are welcome, I'm not the developer of this project.
Sublime Text dired
A Sublime Text 3 plugin that displays a directory in a view, allowing easy file manipulation, loosely copied from emacs dired mode.
Installation
You can install via Sublime Package Control Or you can clone this repo into your Sublime Text 3/Packages
Using
The plugin provides a dired
command which allows you to choose a directory to display. The
files in the directory are displayed in a list allowing them to be moved, renamed, or deleted.
There is no default binding for the dired command itself, but once in a dired view the following are available:
u
- up to parentn
- move to next filep
- move to previous fileD
- delete filesM
- move filesR
- rename filesr
- refreshm
- toggle markU
- unmark all filest
- toggle all marks*.
- mark by file extensionEnter
- open file/directoryCtrl/Alt/Cmd+Enter
- open file/directory in new view
If there are marked files, operations only affect those files. Otherwise files in selections or with cursors on them are affected. This works nicely with multiple cursors and selections.
Rename
The rename command puts the view into “rename mode”. The view is made editable so files can be renamed directly in the view using all of your Sublime Text tools: multiple cursors, search and replace, etc.
Use Ctrl+Enter
to commit your changes and Ctrl+Escape
to cancel them.
Rename compares the names before and after editing, so you must not add or remove lines.
Settings
reuse_view
If True, the default, pressing Enter on a directory uses the current view. If False, a new view is created.
If only one directory is selected, Cmd/Ctrl/Alt+Enter can be used to force a new view even when reuse_view is set.
omit_patterns
Array of regular expressions matching filenames excluded from directory listing. Note that
regexps are written as strings, so escape sequences must be doubled, i.e. "\\."
for /\./
regexp.
By default empty, displaying all files. To hide unix dot files, you can use
{
"omit_patterns": "^\\."
}