-
Notifications
You must be signed in to change notification settings - Fork 366
/
latexCommand.py
41 lines (34 loc) · 1.31 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
import sublime
import sublime_plugin
import re
from .deprecated_command import deprecate
# Insert LaTeX command based on current word
# Position cursor inside braces
class LatextoolsLatexCmdCommand(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]
if command:
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"
else:
snippet = "\\\\$1{$2} $0"
view.run_command("insert_snippet", {'contents': snippet})
else:
sublime.status_message(
"LATEXTOOLS INTERNAL ERROR: could not find command to expand")
deprecate(globals(), 'latexcmdCommand', LatextoolsLatexCmdCommand)