Skip to content

twistedmove/SublimeFileBrowser

 
 

Repository files navigation

FileBrowser for SublimeText

Ditch sidebar and browse your files in a normal tab with keyboard, like a pro!

SublimeFileBrowser Screenshot

You can also use it as a sidebar that you can put on right or left side SublimeFileBrowser Screenshot2

Installation

You can install via Sublime Package Control
Or you can clone this repo into your Sublime Text Packages folder and rename the folder to FileBrowser

Commands and Keybindings

This plugin does not add any keybindings for opening a new tab in "Browse mode". Although, the commands to do that are available in command pallete but I recommend binding F1 to open the current file folder in "Browse mode" with this peice of code (that you can add it to your Key Bindings - User file):

{ 
  "keys": ["f1"], 
  "command": "dired", 
  "args": { "immediate": true } 
}
Commands Description
Browse Mode... Asks for a directory to open in browse mode
Browse Mode: Current file or project Open the directory of current file in browse mode

Shortcuts

Command Shortcut
Help page ?
Toggle mark m
Toggle mark and move down shift+↓
Toggle mark and move up shift+↑
Toggle all marks t
Unmark all u
Mark by extension *
Rename R
Move M
Delete D
Send to trash S
Create directory cd
Create file cf
Open file/view directory o
Open file in another group enter
Preview file in another group shift+enter
Open all marked items in new tabs ⌘+enter / ctrl+enter
Open in Finder/File Explorer \
Open in new window w
Go to parent directory backspace
Go to directory g
Quick jump to directory p
Create/Edit/Remove jump point P
Go to first ⌘+↑ or ctrl+home
Go to last ⌘+↓ or ctrl+end
Move to previous k or
Move to next j or
Jump to /
Find in files s
Refresh view r
Toggle hidden files h
Toggle add folder to project f
Set current folder as only one for the project F
Quicklook for Mac space

In Rename Mode:

Command Shortcut
Apply changes enter
Discard changes escape

Selecting Files and Directories

You can select files and/or directories by marking them with m, or Shift+up/down or just use the sublime multiple cursor feature and extend your cursor to the line that has those files/directories.

Search

Besides incremental search availibale by /, you also may use build-in ‘Goto Symbol…’ (⌘+r or ctrl+r) for fuzzy search.

‘Find in Files…’ integration

Press s to summon ‘Find in Files…’ panel — if you’ve marked some files they will fill ‘Where’ field, otherwise it’ll be filled by current folder path.

Rename Mode

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.

After you are done with editing press enter to commit your changes or escape to cancel them.

Open in new window

Selecting a couple of files and/or directories (either by marking them or using the noraml multiple cursor feature of sublime) and pressing w will open them in a new SublimeText window.

Close FileBrowser when files have been opened

Add the following code in your user key bindings file:

{
  "keys": ["o"],
  "command": "dired_select", "args": {"and_close": true},
  "context": [
    { "key": "selector", "operator": "equal", "operand": "text.dired" },
    { "key": "setting.dired_rename_mode", "operand": false }
  ]
}

Always use a single File Browser view

Add the following code in your user key bindings file:

{ 
  "keys": ["f1"], 
  "command": "dired", 
  "args": {
    "immediate": true,
    "single_pane":true
  }
}

Customizing UI

If you don’t like symbol and want to hide it (then you should use keyboard binding backspace to go to parent directory) you can do it in your user syntax specific settings file (PreferencesPackage SettingsFileBrowserSettings — User) and paste the code below:

{
  "dired_show_parent": false,
}

Git integration

In case git status returns a colorable output in current folder, the modified and untracked files will be designated by orange and green outlines respectively.
If Git is not presented in your PATH you may set git_path setting (see example in default settings file).

Changing color scheme

If you don’t like colors used in FileBrowser just copy this file to your User folder, change colors and paste the code below in your user syntax specific settings file:

{
  "color_scheme": "Path to your custom color scheme file. e.g. Packages/User/custom_dired.hidden-tmTheme",
}

Credit

This is a fork of the awesome dired plugin by Michael Kleehammer

License

See the LICENSE file

About

Ditch sidebar and browse your files in a normal tab with keyboard, like a pro!

Resources

License

Stars

Watchers

Forks

Packages

No packages published