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

Hookblime

by Pafsis ST2

Flexible and generic plugin to hook onto sublime's file state events

Details

  • 2012.07.14.18.40.45
  • github.​com
  • github.​com
  • 12 years ago
  • 6 minutes ago
  • 12 years ago

Installs

  • Total 61
  • Win 19
  • Mac 33
  • Linux 9
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 Oct 18 Oct 17 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8
Windows 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 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 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
Linux 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 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Hookblime

Hookblime lets you easily add hooks to execute your own scripts on file events.

Hook scripts are executed by the user's default shell*, giving you the possibity of using shell-scripting oneliners.

Supported events

These are the currently supported events:

  • on_new: Executed when a new file tab created.
  • on_load: Executed when an existing file is opened.
  • on_close: Executed when a tab is closed.
  • on_pre_save: Executed before a file is saved.
  • on_post_save: Executed after a file is saved.

Configuration

Hookblime can be configured at any level of the Sublime's settings hierachy, both in global and scoped ways.

All configuration must be set in an entry called “hookblime”, containing a dict for each global hook and scope. Each scope must contain its desired hooks.

Each hook dict must have a “cmd” string value with the script to execute, and can have an optional boolean entry called “replace_filename” which if true, makes the plugin replace the string “%(file_name)” with the current file's path. Note that on_new and on_close hooks can be triggered by non-saved files, in which cases an empty path will appended.

If both global and scoped hooks are matched, only the later would be executed.

Sample configuration:

"hookblime" : {
    "source.python" : {
        "on_post_save" : {
            "cmd": "python_saved %(file_name)",
            "replace_filename": true
        }
    },
    "on_new" : {
        "cmd": "global_hook_new_tab"
    }
}

* The working directory of the scripts is always the user's home.