forked from SublimeText/LaTeXTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
latexCommand.py
41 lines (34 loc) · 1.27 KB
/
latexCommand.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# ST2/ST3 compat
from __future__ import print_function
import sublime
if sublime.version() < '3000':
# we are on ST2 and Python 2.X
_ST3 = True
else:
_ST3 = False
import sublime_plugin
import re
# Insert LaTeX command based on current word
# Position cursor inside braces
class latexcmdCommand(sublime_plugin.TextCommand):
def run(self, edit, **args):
view = self.view
# Workaround: env* and friends trip ST2 up because * is a word boundary,
# so we search for a word boundary
# Code is similar to latex_cite_completions.py (should prbly factor out)
point = view.sel()[0].b
line = view.substr(sublime.Region(view.line(point).a, point))
line = line[::-1]
# Stop at space, {,[,( or $
rex = re.compile(r"([^\s\{\[\(\$]*)\s?\{?")
expr = re.match(rex, line)
if expr:
command = expr.group(1)[::-1]
command_region = sublime.Region(point-len(command),point)
view.erase(edit, command_region)
# Be forgiving and skip \ if the user provided one (by mistake...)
bslash = "" if command[0] == '\\' else "\\\\"
snippet = bslash + command + "{$1} $0"
view.run_command("insert_snippet", {'contents': snippet})
else:
sublime.status_message("LATEXTOOLS INTERNAL ERROR: could not find command to expand")