Skip to content

Instantly share code, notes, and snippets.

@pierresh
pierresh / thisphp.py
Last active August 31, 2024 13:30
SublimeText: replace "this" with "$this->" when typing in PHP files
import sublime
import sublime_plugin
class PhpThisToThisArrowCommand(sublime_plugin.TextCommand):
def run(self, edit):
# Get the current cursor position
for region in self.view.sel():
if region.empty():
# Get the position of the cursor
pos = region.begin()