Sublime Files
Sublime Text 2/3 plugin for keyboard driven file navigation
Details
Installs
- Total 25K
- Win 13K
- Mac 8K
- Linux 4K
Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 4 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 3 | 1 | 1 | 0 | 0 | 0 | 0 | 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 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 |
Linux | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime Files
A keyboard driven file navigation/opening plugin for Sublime Text 2/3.
Sublime Files works entirely through the command palette. By running the Sublime Files Navigator, you can “cd
” around directories similar to how you would on a command line in order to open up files. New files will open up in new tabs.
Because Sublime Files actually navigates the file system by changing directories, the navigator remembers and starts from last visited directory on subsequent uses. To open the navigator, you can either just invoke the Command Palette… command or use the keybinding:
- OSX: ctrl + cmd + n
- Windows/Linux: ctrl + alt + n
Installation
Sublime Files can be installed through Sublime Package Control.
Usage
Sublime files an be activated with the Command Palette… command: Sublime Files: Open Navigator, or with the key command ctrl + cmd + n
(or ctrl + alt + n
for Windows / Linux). The first option will always show the current directory. Selecting another directory will navigate to that directory and selecting a file will open that file.
There are a few notable options:
- Selecting Directory actions will pop up a small list of actions that can be applied onto the current directory. Mainly, a user can create new files, add the directory to the current project, and open a terminal at the directory.
- Selecting ~/ navigates to the home directory.
- Selecting ../ navigates to the parent directory.
- Selecting To current view navigates to the directory of the current file being edited.
Configuration
Default configuration is stored in SublimeFiles.sublime-settings
accessible from Preferences->Package Settings->Sublime Files->Settings - Default. When changing any of the settings below it's suggested to use the user settings: Preferences->Package Settings->Sublime Files->Settings - User as the file will remain untouched when updating plugin.
Ignore file types
Sublime Files by default will ignore *.pyc
files and *.class
files. You can modify the list of ignored files by changing the ignore_list
. For example:
{
"ignore_list": ["*.pyc", "*.class", "*.o"]
}
Open Terminal
For OS X/Linux systems, Sublime Files can open up a terminal at the current directory navigated to. In order for this feature to work properly, you will have to modify the term_command
. As a default, it is set to open up Terminal.app for OS X systems.
For example, Gnome Terminal and iTerm2 users respectively will want to change term_command
to:
{
"term_command": "gnome-terminal --working-directory="
}
and
{
"term_command" : "open -a iTerm\ 2 "
}
Start directory
If you always want to start navigation from a given directory for example ~
just update the start_directory
setting:
{
"start_directory": "~"
}
Default configuration comes with this setting turned off (set to null
).