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

File​Watcher

by kapitanluffy ST4

Adds support to broadcasting file events to Sublime Text

Details

Installs

  • Total 78
  • Win 48
  • Mac 22
  • Linux 8
Jan 15 Jan 14 Jan 13 Jan 12 Jan 11 Jan 10 Jan 9 Jan 8 Jan 7 Jan 6 Jan 5 Jan 4 Jan 3 Jan 2 Jan 1 Dec 31 Dec 30 Dec 29 Dec 28 Dec 27 Dec 26 Dec 25 Dec 24 Dec 23 Dec 22 Dec 21 Dec 20 Dec 19 Dec 18 Dec 17 Dec 16 Dec 15 Dec 14 Dec 13 Dec 12 Dec 11 Dec 10 Dec 9 Dec 8 Dec 7 Dec 6 Dec 5 Dec 4 Dec 3 Dec 2
Windows 0 0 0 0 0 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

👁 File Watcher

Sublime Text unfortunately does not automatically detect changes in the loaded folders. This package adds support to it by leveraging LSP features and broadcasting an event where other packages can subscribe

Requirements:

This package requires LSP and LSP-file-watcher-chokidar

Usage:

Create an event listener inside your package subscribing to file_watcher_broadcast_event

import sublime
import sublime_plugin

class MyFileEventListener(sublime_plugin.EventListener):
    def on_window_command(self, window: sublime.Window, command_name: str, args):
        if command_name != "file_watcher_broadcast_event":
            return

        # _events is an array of tuples `(event, file)[]`
        # "event" can be create, change or delete
        events = args['_events']

        # do something...