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
  • 27 minutes ago
  • 12 years ago

Installs

  • Total 61
  • Win 19
  • Mac 33
  • Linux 9
Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13
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.