All Projects → FichteFoll → FileHistory

FichteFoll / FileHistory

Licence: MIT license
Sublime Text plugin that keeps track of files which have been recently closed, as well as files that have been recently accessed.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to FileHistory

sublime-fish
A robust Sublime Text syntax package for fish
Stars: ✭ 32 (-37.25%)
Mutual labels:  sublime-text, sublime-text-3, sublime-text-package
Markdownlivepreview
A Sublime Text 3 plugin to preview your markdown as you type
Stars: ✭ 245 (+380.39%)
Mutual labels:  sublime-text, sublime-text-3
Projectmaker
A Sublime Text 2/3 plugin to allow creating any kind of project from your own custom templates
Stars: ✭ 233 (+356.86%)
Mutual labels:  sublime-text, sublime-text-3
sublime-applescript
AppleScript command completions, build system and useful snippets. Supports editing binary scripts
Stars: ✭ 50 (-1.96%)
Mutual labels:  sublime-text, sublime-text-package
Helium
Let Sublime Text 3 talk with Jupyter.
Stars: ✭ 192 (+276.47%)
Mutual labels:  sublime-text, sublime-text-3
Sublimenotebook
📝 Make Sublime Text your favorite note taking/journal application
Stars: ✭ 203 (+298.04%)
Mutual labels:  sublime-text, sublime-text-3
simple-ftp-deploy
This package for Sublime Text 3 give you possibility to auto upload file to FTP server when you save local file.
Stars: ✭ 16 (-68.63%)
Mutual labels:  sublime-text, sublime-text-3
Sublime Jekyll
A Sublime Text package for Jekyll static sites.
Stars: ✭ 160 (+213.73%)
Mutual labels:  sublime-text, sublime-text-3
dimmed
👔 Dimmed Color Theme for Sublime Text 2/3
Stars: ✭ 18 (-64.71%)
Mutual labels:  sublime-text, sublime-text-3
Golite
Add essential language support for the Go language to Sublime Text 3.
Stars: ✭ 14 (-72.55%)
Mutual labels:  sublime-text, sublime-text-3
Gruvbox
🎨 Sublime Text themes & color schemes with pastel 'retro groove' colors
Stars: ✭ 191 (+274.51%)
Mutual labels:  sublime-text, sublime-text-3
Sublime-Pretty-Shell
🐚 Shell Script Formatter / Syntax Checker (Powered by shfmt)
Stars: ✭ 28 (-45.1%)
Mutual labels:  sublime-text, sublime-text-3
Zeal
Zeal for Sublime Text 2/3
Stars: ✭ 184 (+260.78%)
Mutual labels:  sublime-text, sublime-text-3
sublime-meetio-theme
The most powerful and adaptive theme for Sublime Text 3
Stars: ✭ 71 (+39.22%)
Mutual labels:  sublime-text, sublime-text-3
Css3
The most complete CSS support for Sublime Text
Stars: ✭ 178 (+249.02%)
Mutual labels:  sublime-text, sublime-text-3
sublime
Repository for the Tandem Sublime Plugin
Stars: ✭ 22 (-56.86%)
Mutual labels:  sublime-text, sublime-text-3
Githubinator
Sublime Text plugin that shows selected text on remote GitHub or Bitbucket repo
Stars: ✭ 135 (+164.71%)
Mutual labels:  sublime-text, sublime-text-3
Neon Color Scheme
A colorful bright-on-black color scheme for Sublime Text and TextMate. Its aim is to make as many languages as possible look as good as possible. Includes extended support for Python, Ruby, Clojure, JavaScript/JSON, C/C++, diff, HTML/XML, Markdown, PHP, CSS/SCSS/SASS, GitGutter, Find In Files, PackageDev, Regex, SublimeLinter, and much more.
Stars: ✭ 159 (+211.76%)
Mutual labels:  sublime-text, sublime-text-3
sublime-text-theme-switcher-menu
Painless theme selection in Sublime Text ⚡
Stars: ✭ 18 (-64.71%)
Mutual labels:  sublime-text, sublime-text-3
zephir-sublime
Sublime Text syntax highlighting for for Zephir
Stars: ✭ 41 (-19.61%)
Mutual labels:  sublime-text, sublime-text-package

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).

Preview Image

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

  1. Install Package Control.
  2. Once installed, bring up the Command Palette (Command-Shift-P on OS X, Ctrl-Shift-P on Linux/Windows).
  3. Select Package Control: Install Package and then select File 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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].