File History
Provides access to the history of recently accessed files - project-wise or globally
Details
Installs
- Total 24K
- Win 13K
- Mac 7K
- Linux 4K
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 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 1 | 0 | 1 | 1 | 0 | 2 | 3 | 0 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 0 | 0 | 0 | 0 | 1 | 3 | 1 | 2 | 2 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 6 | 2 | 1 | 2 | 0 | 1 | 1 | 2 | 3 | 0 |
Mac | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 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 | 3 | 0 | 1 |
Linux | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
SublimeText - File History
Sublime Text 2 and 3 plugin to provide access to the history of recently used files - project-wise or globally.
The most recently closed file can be instantly re-opened or the entire file history can be shown and filtered in a quick panel (including file preview and the ability to open multiple files).
Features
- Reopen the most recently closed file or open a quick panel of recently used files to choose from
- Display a preview of the file while browsing the quick panel (only Sublime Text 3)
- Open multiple history entries from the quick panel with the Right key
- Delete history entries from the quick panel with Ctrl + Del
- Optionally remove any non-existent files while looking through the file history (when previewed or opened) or on start-up
- Creates backups in case you lose your history
- Highly configurable through FileHistory.sublime-settings file, like excluding files with regex patterns
Installation
- Install Package Control.
- Once installed,
bring up the Command Palette
(
Command-Shift-P
on OS X,Ctrl-Shift-P
on Linux/Windows). - Select
Package Control: Install Package
and then selectFile History
when the list appears.
Package Control will automagically keep the plugin up to date.
Usage
To use the plugin,
open the Command Palette
and search for File History:
.
When you opened a panel you can use the Right key to open the file and keep the panel open, or Ctrl/Cmd + Del to remove the selected file from the history.
For default keymap definitions, see Default (Windows).sublime-keymap (OSX).
For the available and default settings, see FileHistory.sublime-settings.
Project Settings
You can extend
the path_exclude_patterns
and path_reinclude_patterns
lists
in your project settings.
For this,
add a "file_history"
dictionary
to your project's settings
and then one or both of the settings to that.
Example:
{
"folders": [
{
"path": "."
}
],
"settings": {
"file_history": {
"path_exclude_patterns": ["/bin/"],
"path_reinclude_patterns": ["\\.compiled$"]
}
}
}
Commands
open_recently_closed_file
(Window)
Opens a popup with recently closed files
or reopens the lastly closed view
if action == "open_latest_closed"
.
Parameters
action (str) - Default:
"show_history"
, Allowed values:"show_history"
,"open_latest_closed"
current_project_only (bool) - Default:
True
cleanup_file_history
(Window)
Checks the current project or the whole history for non-existent files and removes them from the history.
Parameters
- current_project_only (bool) - Default:
True
reset_file_history
(Window)
Removes all history data.