-
Notifications
You must be signed in to change notification settings - Fork 366
/
jumpto_anywhere.py
360 lines (310 loc) · 12.5 KB
/
jumpto_anywhere.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
import os
import re
import sublime
import sublime_plugin
from .deprecated_command import deprecate
from .getTeXRoot import get_tex_root
from .latextools_utils import analysis, ana_utils, quickpanel, utils
from .latextools_utils.tex_directives import TEX_DIRECTIVE
from .latex_cite_completions import NEW_STYLE_CITE_REGEX
from .latex_glossary_completions import ACR_LINE_RE, GLO_LINE_RE
from .latex_ref_completions import NEW_STYLE_REF_REGEX
from .jumpto_tex_file import INPUT_REG, IMPORT_REG, BIB_REG, IMAGE_REG
from . import jumpto_tex_file
INPUT_REG_EXPS = [INPUT_REG, IMPORT_REG, BIB_REG, IMAGE_REG]
COMMAND_REG = re.compile(
r"\\(?P<command>[\w]+)"
r"\*?\s*"
r"(?:\[[^\]]*\]\s*)?"
r"\{(?P<args>[^}]*)\}",
re.UNICODE
)
def _get_selected_arg(view, com_reg, pos):
"""
Retrieves the selected argument in a comma separated list,
returns None if there are several entries and no entry is selected
directly
"""
args = com_reg.group("args")
if "," not in args:
# only one arg => return it
return args
args_region = com_reg.regs[COMMAND_REG.groupindex["args"]]
cursor = com_reg.start() + pos - args_region[0]
if cursor < 0 or len(args) < cursor:
# need to explicit select the argument
message = (
"Selection to vague. Directly click on the name"
" inside the command."
)
print(message)
sublime.status_message(message)
return
before = args[:cursor]
after = args[cursor:]
start_before = before.rfind(",") + 1
end_after = after.find(",")
if end_after == -1:
end_after = len(after)
arg = before[start_before:] + after[:end_after]
arg = arg.strip()
return arg
def _show_usage_label(view, args):
tex_root = get_tex_root(view)
if tex_root is None:
return False
ana = analysis.analyze_document(tex_root)
def is_correct_ref(c):
command = ("\\" + c.command + "{")[::-1]
return NEW_STYLE_REF_REGEX.match(command) and c.args == args
refs = ana.filter_commands(is_correct_ref)
if len(refs) == 0:
sublime.error_message("No references for '{0}' found.".format(args))
return
elif len(refs) == 1:
ref = refs[0]
utils.open_and_select_region(view, ref.file_name, ref.region)
return
captions = [ana_utils.create_rel_file_str(ana, r) for r in refs]
quickpanel.show_quickpanel(captions, refs)
def _jumpto_ref(view, com_reg, pos):
label_id = _get_selected_arg(view, com_reg, pos)
if not label_id:
return
sublime.status_message(
"Scanning document for label '{0}'...".format(label_id))
tex_root = get_tex_root(view)
ana = analysis.analyze_document(tex_root)
if ana is None:
return
def is_correct_label(c):
return c.command == "label" and c.args == label_id
labels = ana.filter_commands(is_correct_label)
try:
label = labels[0]
except:
message = "No matching label found for '{0}'.".format(label_id)
print(message)
sublime.status_message(message)
return
label_region = label.region
message = "Jumping to label '{0}'.".format(label_id)
print(message)
sublime.status_message(message)
utils.open_and_select_region(view, label.file_name, label_region)
def _jumpto_cite(view, com_reg, pos):
tex_root = get_tex_root(view)
bib_key = _get_selected_arg(view, com_reg, pos)
if tex_root is None or not bib_key:
return
message = "Scanning bibliography files for key '{0}'...".format(bib_key)
print(message)
sublime.status_message(message)
base_dir = os.path.dirname(tex_root)
ana = analysis.get_analysis(tex_root)
bib_commands = ana.filter_commands(
["bibliography", "nobibliography", "addbibresource"])
for bib_command in bib_commands:
for bib_file in jumpto_tex_file._split_bib_args(bib_command.args):
if not os.path.splitext(bib_file)[1]:
bib_file += ".bib"
bib_file = os.path.join(base_dir, bib_file)
try:
file_content = utils.read_file_unix_endings(bib_file)
start = file_content.find(bib_key)
end = start + len(bib_key)
# check that we found the entry and we are not inside a word
if (start == -1 or file_content[start - 1:start].isalnum() or
file_content[end:end + 1].isalnum()):
continue
region = sublime.Region(start, end)
message = "Jumping to bibliography key '{0}'.".format(bib_key)
print(message)
sublime.status_message(message)
utils.open_and_select_region(view, bib_file, region)
return
except Exception as e:
print("Error occurred opening file {0}".format(bib_file))
print(e)
continue
message = "Entry '{0}' not found in bibliography.".format(bib_key)
print(message)
sublime.status_message(message)
def _jumpto_glo(view, com_reg, pos, acr=False):
tex_root = get_tex_root(view)
if not tex_root:
return
ana = analysis.analyze_document(tex_root)
if not acr:
commands = ana.filter_commands(
["newglossaryentry", "longnewglossaryentry", "newacronym"])
else:
commands = ana.filter_commands("newacronym")
iden = com_reg.group("args")
try:
entry = next(c for c in commands if c.args == iden)
except:
message = "Glossary definition not found for '{0}'".format(iden)
print(message)
sublime.status_message(message)
return
message = "Jumping to Glossary '{0}'.".format(iden)
print(message)
sublime.status_message(message)
utils.open_and_select_region(view, entry.file_name, entry.args_region)
def _jumpto_pkg_doc(view, com_reg, pos):
def view_doc(package):
message = "Try opening documentation for package '{0}'".format(package)
print(message)
sublime.status_message(message)
view.window().run_command("latextools_view_doc", {"file": package})
package_name = _get_selected_arg(view, com_reg, pos)
if package_name:
view_doc(package_name)
def _jumpto_tex_root(view, root):
if os.path.isabs(root):
path = root
else:
path = os.path.normpath(
os.path.join(
os.path.dirname(view.file_name()),
root
)
)
sublime.active_window().open_file(path)
def _opt_jumpto_self_def_command(view, com_reg):
tex_root = get_tex_root(view)
if tex_root is None:
return False
# check in the cache whether we should jump (is command self defined)
newcommand_keywords = ["newcommand", "renewcommand"]
command = "\\" + com_reg.group("command")
cana = analysis.get_analysis(tex_root)
new_commands = cana.filter_commands(newcommand_keywords)
if command not in [c.args for c in new_commands]:
message = "Command not defined (cached) '{0}'".format(command)
print(message)
return False
message =\
"Scanning document for command definition of '{0}'".format(command)
print(message)
sublime.status_message(message)
# analyze the document to retrieve the correct position of the
# command definition
ana = analysis.analyze_document(tex_root)
new_commands = ana.filter_commands(newcommand_keywords)
try:
new_com_def = next(filter(
lambda c: c.args == command, new_commands))
except:
message = "Command not self defined '{0}'".format(command)
print(message)
return False
file_name = new_com_def.file_name
region = new_com_def.args_region
message = "Jumping to definition of '{0}'".format(command)
print(message)
sublime.status_message(message)
utils.open_and_select_region(view, file_name, region)
return True
class LatextoolsJumptoAnywhereCommand(sublime_plugin.TextCommand):
def run(self, edit, position=None):
view = self.view
if position is None:
if len(view.sel()) != 1:
print("Jump to anywhere does not work with multiple cursors")
return
sel = view.sel()[0]
else:
sel = sublime.Region(position, position)
line_r = view.line(sel)
line = view.substr(line_r)
def is_inside(g):
"""check whether the selection is inside the command"""
if g is None:
return False
b = line_r.begin()
# the region, which should contain the selection
reg = g.regs[0]
return reg[0] <= sel.begin() - b and sel.end() - b <= reg[1]
try:
com_reg = next(filter(is_inside, COMMAND_REG.finditer(line)))
except:
# since the magic comment will not match the command, do this here
if view.file_name():
m = TEX_DIRECTIVE.search(line)
if (
m and
m.group(1) == 'root' and
m.start() <= sel.begin() - line_r.begin() and
sel.end() - line_r.begin() <= m.end()
):
_jumpto_tex_root(view, m.group(2))
return
print("Cursor is not inside a command")
return
command = com_reg.group("command")
args = com_reg.group("args")
reversed_command = "{" + command[::-1] + "\\"
# the cursor position inside the command
pos = sel.b - line_r.begin() - com_reg.start()
# check if its a ref
if NEW_STYLE_REF_REGEX.match(reversed_command):
sublime.status_message("Jump to reference '{0}'".format(args))
_jumpto_ref(view, com_reg, pos)
# check if it is a cite
elif NEW_STYLE_CITE_REGEX.match(reversed_command):
sublime.status_message("Jump to citation '{0}'".format(args))
_jumpto_cite(view, com_reg, pos)
elif command == "label":
_show_usage_label(view, args)
elif GLO_LINE_RE.match(reversed_command):
sublime.status_message("Jump to glossary '{0}'".format(args))
_jumpto_glo(view, com_reg, pos)
elif ACR_LINE_RE.match(reversed_command):
sublime.status_message("Jump to acronym '{0}'".format(args))
_jumpto_glo(view, com_reg, pos, acr=True)
# check if it is any kind of input command
elif any(reg.match(com_reg.group(0)) for reg in INPUT_REG_EXPS):
kwargs = {
"auto_create_missing_folders": False,
"auto_insert_root": False
}
if pos is not None:
kwargs.update({"position": position})
view.run_command("latextools_jumpto_file", kwargs)
elif command in ["usepackage", "Requirepackage"]:
_jumpto_pkg_doc(view, com_reg, pos)
else:
# if the cursor is inside the \command part, try jump to
# self defined commands
b = line_r.begin()
command_region = com_reg.regs[COMMAND_REG.groupindex["command"]]
# if cursor is inside \command
if (command_region[0] + b - 1 <= sel.begin() and
sel.end() <= command_region[1] + b):
_opt_jumpto_self_def_command(view, com_reg)
class LatextoolsJumptoAnywhereByMouseCommand(sublime_plugin.WindowCommand):
def want_event(self):
return True
def run(self, event=None, fallback_command="", set_caret=False):
window = self.window
view = window.active_view()
def score_selector(selector):
point = view.sel()[0].b if len(view.sel()) else 0
return view.score_selector(point, selector)
if score_selector("text.tex.latex"):
print("Jump in tex file.")
pos = view.window_to_text((event["x"], event["y"]))
view.run_command("latextools_jumpto_anywhere", {"position": pos})
elif fallback_command:
if set_caret:
self._set_caret(view, event)
print("Run command '{0}'".format(fallback_command))
window.run_command(fallback_command)
def _set_caret(self, view, event):
pos = view.window_to_text((event["x"], event["y"]))
view.sel().clear()
view.sel().add(sublime.Region(pos, pos))
deprecate(globals(), 'JumptoTexAnywhereCommand', LatextoolsJumptoAnywhereCommand)
deprecate(globals(), 'JumptoTexAnywhereByMouseCommand', LatextoolsJumptoAnywhereByMouseCommand)