ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

dired

by kublaios ST3

A Sublime Text 3 plugin that displays a directory in a view, allowing easy file manipulation, loosely copied from emacs dired mode.

Details

  • 2023.12.04.12.15.31
  • github.​com
  • github.​com
  • 8 months ago
  • 2 hours ago
  • 11 years ago

Installs

  • Total 3K
  • Win 2K
  • Mac 1K
  • Linux 505
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 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13
Windows 0 0 0 0 0 1 0 0 0 1 0 0 1 2 0 0 1 0 1 1 0 0 0 0 1 0 1 0 0 0 1 1 0 0 0 4 1 0 0 0 0 0 0 1 0
Mac 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1
Linux 0 0 0 0 0 1 0 0 0 1 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 0 0 0 0 1 0 0 1 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 parent
  • n - move to next file
  • p - move to previous file
  • D - delete files
  • M - move files
  • R - rename files
  • r - refresh
  • m - toggle mark
  • U - unmark all files
  • t - toggle all marks
  • *. - mark by file extension
  • Enter - open file/directory
  • Ctrl/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.

Immediate

The dired command accepts the argument immediate, which immediately displays a directory without prompting. The directory displayed will be that of the current view or the first project folder, or if neither of these are available, the user’s home directory.

This also allows the plugin to be used from the command line or integrated with a file browser etc., e.g.

subl --command 'dired {"immediate": true}' "/path/to/folder"

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”: “.” }