Python sublime_plugin.ApplicationCommand() Examples
The following are 2
code examples of sublime_plugin.ApplicationCommand().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
sublime_plugin
, or try the search function
.
Example #1
Source File: ksp_plugin.py From SublimeKSP with GNU General Public License v3.0 | 5 votes |
def __init__(self): sublime_plugin.ApplicationCommand.__init__(self) self.thread = None self.last_filename = None
Example #2
Source File: bbcode.py From SublimeKSP with GNU General Public License v3.0 | 5 votes |
def __init__(self): sublime_plugin.ApplicationCommand.__init__(self)