-
Notifications
You must be signed in to change notification settings - Fork 366
/
latexEnvironment.py
37 lines (30 loc) · 1.22 KB
/
latexEnvironment.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
import sublime
import sublime_plugin
import re
from .deprecated_command import deprecate
# Insert LaTeX environment based on current word
# Position cursor inside environment
class LatextoolsLatexEnvCommand(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]
rex = re.compile(r"([^\s\{]*)\s?\{?")
expr = re.match(rex, line)
if expr:
environment = expr.group(1)[::-1]
if environment:
environment_region = sublime.Region(point - len(environment), point)
view.erase(edit, environment_region)
snippet = "\\\\begin{" + environment + "}\n$1\n\\\\end{" + environment + "}$0"
else:
snippet = "\\\\begin{${1:env}}\n$2\n\end{$1}$0"
view.run_command("insert_snippet", {'contents': snippet})
else:
sublime.status_message(
"LATEXTOOLS INTERNAL ERROR: could not find environment to expand")
deprecate(globals(), 'latexenvCommand', LatextoolsLatexEnvCommand)