Skip to content

Instantly share code, notes, and snippets.

@altbdoor
Last active June 10, 2023 01:37
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save altbdoor/6c36d2c83accd3095145085d04c84f3b to your computer and use it in GitHub Desktop.
Save altbdoor/6c36d2c83accd3095145085d04c84f3b to your computer and use it in GitHub Desktop.
Sublime Text 3 plugin to automatically close purchase pop up on save

Credits

Installation:

  1. Go Tools > Developer > New Plugin...
  2. Copy paste gist content into file and save as unregistered_killer.py
  3. Save the file into %APPDATA%\Roaming\Sublime Text 3\Packages\User
  4. Restart Sublime Text 3 for good measure
import sublime
import sublime_plugin
import time
class UnregisteredKillerCommand(sublime_plugin.EventListener):
SLEEP_DURATION = 0.1
LOOP_CHECK_COUNT = 30
UNREG_WINDOW_TITLE = 'This is an unregistered copy'
MAIN_WINDOW_TITLE = ' - Sublime Text (UNREGISTERED)'
windows_ctypes = None
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
if sublime.platform() == 'windows':
import ctypes
self.windows_ctypes = ctypes
def on_pre_save_async(self, *args):
for i in range(0, self.LOOP_CHECK_COUNT):
active_windows = self.get_active_windows()
unreg_window = None
sublime_window = None
for window in active_windows:
if window['title'] == self.UNREG_WINDOW_TITLE:
unreg_window = window['hwnd']
elif self.MAIN_WINDOW_TITLE in window['title']:
sublime_window = window['hwnd']
if unreg_window and sublime_window:
break
if unreg_window and sublime_window:
self.activate_window(sublime_window)
self.close_window(unreg_window)
break
else:
time.sleep(self.SLEEP_DURATION)
def get_active_windows(self):
windows = []
if sublime.platform() == 'windows':
EnumWindows = self.windows_ctypes.windll.user32.EnumWindows
EnumWindowsProc = self.windows_ctypes.WINFUNCTYPE(
self.windows_ctypes.c_bool,
self.windows_ctypes.POINTER(self.windows_ctypes.c_int),
self.windows_ctypes.POINTER(self.windows_ctypes.c_int),
)
GetWindowText = self.windows_ctypes.windll.user32.GetWindowTextW
GetWindowTextLength = self.windows_ctypes.windll.user32.GetWindowTextLengthW
IsWindowVisible = self.windows_ctypes.windll.user32.IsWindowVisible
def foreach_window(hwnd, lParam):
if IsWindowVisible(hwnd):
length = GetWindowTextLength(hwnd)
buff = self.windows_ctypes.create_unicode_buffer(length + 1)
GetWindowText(hwnd, buff, length + 1)
windows.append({
'hwnd': hwnd,
'title': buff.value,
})
return True
EnumWindows(EnumWindowsProc(foreach_window), 0)
return windows
def close_window(self, hwnd):
if sublime.platform() == 'windows':
# DestroyWindow = self.windows_ctypes.windll.user32.DestroyWindow
# DestroyWindow(hwnd)
SendMessage = self.windows_ctypes.windll.user32.SendMessageW
WM_SYSCOMMAND = self.windows_ctypes.c_int(0x0112)
SC_CLOSE = self.windows_ctypes.c_int(0xF060)
SendMessage(hwnd, WM_SYSCOMMAND, SC_CLOSE, 0)
def activate_window(self, hwnd):
if sublime.platform() == 'windows':
SetForegroundWindow = self.windows_ctypes.windll.user32.SetForegroundWindow
SetForegroundWindow(hwnd)
@Destitute-Streetdwelling-Guttersnipe

LGTM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment