forked from guillermooo/Vintageous
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex_commands.py
845 lines (680 loc) · 29.6 KB
/
ex_commands.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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
import sublime
import sublime_plugin
import sys
import os
# We use several commands implemented in Vintange, so make it available here.
sys.path.append(os.path.join(sublime.packages_path(), 'Vintage'))
import re
import subprocess
# TODO: This is not available. Integrate with Vintageous instead.
# from Vintage.vintage import g_registers
from Vintageous.ex.plat.windows import get_oem_cp
from Vintageous.ex.plat.windows import get_startup_info
from Vintageous.ex import ex_error
from Vintageous.ex import ex_range
from Vintageous.ex import shell
from Vintageous.ex import parsers
from Vintageous.state import VintageState
GLOBAL_RANGES = []
CURRENT_LINE_RANGE = {'left_ref': '.', 'left_offset': 0, 'left_search_offsets': [],
'right_ref': None, 'right_offset': 0, 'right_search_offsets': []}
class VintageousExState(object):
# When repeating searches, determines which search term to use: the current
# word or the latest search term.
# Values: find_under, search_pattern
search_buffer_type = 'find_under'
def is_any_buffer_dirty(window):
for v in window.views():
if v.is_dirty():
return True
# TODO: this code must be shared with Vintageous, not reimplemented here.
def set_register(text, register):
return None
def gather_buffer_info(v):
"""gathers data to be displayed by :ls or :buffers
"""
path = v.file_name()
if path:
parent, leaf = os.path.split(path)
parent = os.path.basename(parent)
path = os.path.join(parent, leaf)
else:
path = v.name() or str(v.buffer_id())
leaf = v.name() or 'untitled'
status = []
if not v.file_name():
status.append("t")
if v.is_dirty():
status.append("*")
if v.is_read_only():
status.append("r")
if status:
leaf += ' (%s)' % ', '.join(status)
return [leaf, path]
def get_region_by_range(view, line_range=None, as_lines=False):
# If GLOBAL_RANGES exists, the ExGlobal command has been run right before
# the current command, and we know we must process these lines.
global GLOBAL_RANGES
if GLOBAL_RANGES:
rv = GLOBAL_RANGES[:]
GLOBAL_RANGES = []
return rv
if line_range:
vim_range = ex_range.VimRange(view, line_range)
if as_lines:
return vim_range.lines()
else:
return vim_range.blocks()
class ExGoto(sublime_plugin.TextCommand):
def run(self, edit, line_range=None):
if not line_range['text_range']:
# No-op: user issued ":".
return
ranges, _ = ex_range.new_calculate_range(self.view, line_range)
a, b = ranges[0]
self.view.run_command('vi_go_to_line', {'line': b})
self.view.show(self.view.sel()[0])
class ExShellOut(sublime_plugin.TextCommand):
"""Ex command(s): :!cmd, :'<,>'!cmd
Run cmd in a system's shell or filter selected regions through external
command.
"""
def run(self, edit, line_range=None, shell_cmd=''):
try:
if line_range['text_range']:
shell.filter_thru_shell(
view=self.view,
regions=get_region_by_range(self.view, line_range=line_range),
cmd=shell_cmd)
else:
shell.run_and_wait(self.view, shell_cmd)
except NotImplementedError:
ex_error.handle_not_implemented()
class ExShell(sublime_plugin.TextCommand):
"""Ex command(s): :shell
Opens a shell at the current view's directory. Sublime Text keeps a virtual
current directory that most of the time will be out of sync with the actual
current directory. The virtual current directory is always set to the
current view's directory, but it isn't accessible through the API.
"""
def open_shell(self, command):
view_dir = os.path.dirname(self.view.file_name())
return subprocess.Popen(command, cwd=view_dir)
def run(self, edit):
if sublime.platform() == 'linux':
term = self.view.settings().get('VintageousEx_linux_terminal')
term = term or os.environ.get('COLORTERM') or os.environ.get("TERM")
if not term:
sublime.status_message("Vintageous: Not terminal name found.")
return
try:
self.open_shell([term, '-e', 'bash']).wait()
except Exception as e:
print(e)
sublime.status_message("Vintageous: Error while executing command through shell.")
return
elif sublime.platform() == 'osx':
term = self.view.settings().get('VintageousEx_osx_terminal')
term = term or os.environ.get('COLORTERM') or os.environ.get("TERM")
if not term:
sublime.status_message("Vintageous: Not terminal name found.")
return
try:
self.open_shell([term, '-e', 'bash']).wait()
except Exception as e:
print(e)
sublime.status_message("Vintageous: Error while executing command through shell.")
return
elif sublime.platform() == 'windows':
self.open_shell(['cmd.exe', '/k']).wait()
else:
# XXX OSX (make check explicit)
ex_error.handle_not_implemented()
class ExReadShellOut(sublime_plugin.TextCommand):
def run(self, edit, line_range=None, name='', plusplus_args='', forced=False):
target_line = self.view.line(self.view.sel()[0].begin())
if line_range['text_range']:
range = max(ex_range.calculate_range(self.view, line_range=line_range)[0])
target_line = self.view.line(self.view.text_point(range, 0))
target_point = min(target_line.b + 1, self.view.size())
# cheat a little bit to get the parsing right:
# - forced == True means we need to execute a command
if forced:
if sublime.platform() == 'linux':
for s in self.view.sel():
# TODO: make shell command configurable.
the_shell = self.view.settings().get('linux_shell')
the_shell = the_shell or os.path.expandvars("$SHELL")
if not the_shell:
sublime.status_message("Vintageous: No shell name found.")
return
try:
p = subprocess.Popen([the_shell, '-c', name],
stdout=subprocess.PIPE)
except Exception as e:
print(e)
sublime.status_message("Vintageous: Error while executing command through shell.")
return
self.view.insert(edit, s.begin(), p.communicate()[0][:-1])
elif sublime.platform() == 'windows':
for s in self.view.sel():
p = subprocess.Popen(['cmd.exe', '/C', name],
stdout=subprocess.PIPE,
startupinfo=get_startup_info()
)
cp = 'cp' + get_oem_cp()
rv = p.communicate()[0].decode(cp)[:-2].strip()
self.view.insert(edit, s.begin(), rv)
else:
ex_error.handle_not_implemented()
# Read a file into the current view.
else:
# According to Vim's help, :r should read the current file's content
# if no file name is given, but Vim doesn't do that.
# TODO: implement reading a file into the buffer.
ex_error.handle_not_implemented()
return
class ExPromptSelectOpenFile(sublime_plugin.TextCommand):
"""Ex command(s): :ls, :files
Shows a quick panel listing the open files only. Provides concise
information about the buffers's state: 'transient', 'unsaved'.
"""
def run(self, edit):
self.file_names = [gather_buffer_info(v)
for v in self.view.window().views()]
self.view.window().show_quick_panel(self.file_names, self.on_done)
def on_done(self, idx):
if idx == -1: return
sought_fname = self.file_names[idx]
for v in self.view.window().views():
if v.file_name() and v.file_name().endswith(sought_fname[1]):
self.view.window().focus_view(v)
# XXX Base all checks on buffer id?
elif sought_fname[1].isdigit() and \
v.buffer_id() == int(sought_fname[1]):
self.view.window().focus_view(v)
class ExMap(sublime_plugin.TextCommand):
# do at least something moderately useful: open the user's .sublime-keymap
# file
def run(self, edit):
if sublime.platform() == 'windows':
platf = 'Windows'
elif sublime.platform() == 'linux':
platf = 'Linux'
else:
platf = 'OSX'
self.view.window().run_command('open_file', {'file':
'${packages}/User/Default (%s).sublime-keymap' % platf})
class ExAbbreviate(sublime_plugin.TextCommand):
# for them moment, just open a completions file.
def run(self, edit):
abbs_file_name = 'Vintageous Abbreviations.sublime-completions'
abbreviations = os.path.join(sublime.packages_path(),
'User/' + abbs_file_name)
if not os.path.exists(abbreviations):
with open(abbreviations, 'w') as f:
f.write('{\n\t"scope": "",\n\t"completions": [\n\t\n\t]\n}\n')
self.view.window().run_command('open_file',
{'file': "${packages}/User/%s" % abbs_file_name})
class ExPrintWorkingDir(sublime_plugin.TextCommand):
def run(self, edit):
sublime.status_message(os.getcwd())
class ExWriteFile(sublime_plugin.TextCommand):
def run(self, edit,
line_range=None,
forced=False,
file_name='',
plusplus_args='',
operator='',
target_redirect='',
subcmd=''):
if file_name and target_redirect:
sublime.status_message('Vintageous: Too many arguments.')
return
appending = operator == '>>'
# FIXME: reversed? -- what's going on here!!
a_range = line_range['text_range']
content = get_region_by_range(self.view, line_range=line_range) if a_range else \
[sublime.Region(0, self.view.size())]
if target_redirect or file_name:
target = self.view.window().new_file()
target.set_name(target_redirect or file_name)
else:
target = self.view
start = 0 if not appending else target.size()
prefix = '\n' if appending and target.size() > 0 else ''
if appending or target_redirect or file_name:
for frag in reversed(content):
target.insert(edit, start, prefix + self.view.substr(frag) + '\n')
elif a_range:
start_deleting = 0
for frag in content:
text = self.view.substr(frag) + '\n'
self.view.insert(edit, 0, text)
start_deleting += len(text)
self.view.replace(edit, sublime.Region(start_deleting,
self.view.size()), '')
else:
if self.view.is_dirty():
self.view.run_command('save')
class ExWriteAll(sublime_plugin.TextCommand):
def run(self, edit, forced=False):
for v in self.view.window().views():
if v.is_dirty():
v.run_command('save')
class ExNewFile(sublime_plugin.TextCommand):
def run(self, edit, forced=False):
self.view.window().run_command('new_file')
class ExFile(sublime_plugin.TextCommand):
def run(self, edit, forced=False):
# XXX figure out what the right params are. vim's help seems to be
# wrong
if self.view.file_name():
fname = self.view.file_name()
else:
fname = 'untitled'
attrs = ''
if self.view.is_read_only():
attrs = 'readonly'
if self.view.is_scratch():
attrs = 'modified'
lines = 'no lines in the buffer'
if self.view.rowcol(self.view.size())[0]:
lines = self.view.rowcol(self.view.size())[0] + 1
# fixme: doesn't calculate the buffer's % correctly
if not isinstance(lines, str):
vr = self.view.visible_region()
start_row, end_row = self.view.rowcol(vr.begin())[0], \
self.view.rowcol(vr.end())[0]
mid = (start_row + end_row + 2) / 2
percent = float(mid) / lines * 100.0
msg = fname
if attrs:
msg += " [%s]" % attrs
if isinstance(lines, str):
msg += " -- %s --" % lines
else:
msg += " %d line(s) --%d%%--" % (lines, int(percent))
sublime.status_message('Vintageous: %s' % msg)
class ExMove(sublime_plugin.TextCommand):
def run(self, edit, line_range=None, forced=False, address=''):
# make sure we have a default range
if not line_range['text_range']:
line_range['text_range'] = '.'
address_parser = parsers.cmd_line.AddressParser(address)
parsed_address = address_parser.parse()
address = ex_range.calculate_address(self.view, parsed_address)
if address is None:
ex_error.display_error(ex_error.ERR_INVALID_ADDRESS)
return
line_block = get_region_by_range(self.view, line_range=line_range)
line_block = [self.view.substr(r) for r in line_block]
text = '\n'.join(line_block) + '\n'
if address != 0:
dest = self.view.line(self.view.text_point(address, 0)).end() + 1
else:
dest = 0
# Don't move lines onto themselves.
for sel in self.view.sel():
if sel.contains(dest):
ex_error.display_error(ex_error.ERR_CANT_MOVE_LINES_ONTO_THEMSELVES)
return
if dest > self.view.size():
dest = self.view.size()
text = '\n' + text[:-1]
self.view.insert(edit, dest, text)
for r in reversed(get_region_by_range(self.view, line_range)):
self.view.erase(edit, self.view.full_line(r))
class ExCopy(sublime_plugin.TextCommand):
# todo: do null ranges always default to '.'?
def run(self, edit, line_range=CURRENT_LINE_RANGE, forced=False, address=''):
address_parser = parsers.cmd_line.AddressParser(address)
parsed_address = address_parser.parse()
address = ex_range.calculate_address(self.view, parsed_address)
if address is None:
ex_error.display_error(ex_error.ERR_INVALID_ADDRESS)
return
line_block = get_region_by_range(self.view, line_range=line_range)
line_block = [self.view.substr(r) for r in line_block]
text = '\n'.join(line_block) + '\n'
if address != 0:
dest = self.view.line(self.view.text_point(address, 0)).end() + 1
else:
dest = address
if dest > self.view.size():
dest = self.view.size()
text = '\n' + text[:-1]
self.view.insert(edit, dest, text)
self.view.sel().clear()
cursor_dest = self.view.line(dest + len(text) - 1).begin()
self.view.sel().add(sublime.Region(cursor_dest, cursor_dest))
class ExOnly(sublime_plugin.TextCommand):
""" Command: :only
"""
def run(self, edit, forced=False):
if not forced:
if is_any_buffer_dirty(self.view.window()):
ex_error.display_error(ex_error.ERR_OTHER_BUFFER_HAS_CHANGES)
return
w = self.view.window()
current_id = self.view.id()
for v in w.views():
if v.id() != current_id:
if forced and v.is_dirty():
v.set_scratch(True)
w.focus_view(v)
w.run_command('close')
class ExDoubleAmpersand(sublime_plugin.TextCommand):
""" Command :&&
"""
def run(self, edit, line_range=None, flags='', count=''):
self.view.run_command('ex_substitute', {'line_range': line_range,
'pattern': flags + count})
class ExSubstitute(sublime_plugin.TextCommand):
most_recent_pat = None
most_recent_flags = ''
most_recent_replacement = ''
def run(self, edit, line_range=None, pattern=''):
# :s
if not pattern:
pattern = ExSubstitute.most_recent_pat
replacement = ExSubstitute.most_recent_replacement
flags = ''
count = 0
# :s g 100 | :s/ | :s// | s:/foo/bar/g 100 | etc.
else:
try:
parts = parsers.s_cmd.split(pattern)
except SyntaxError as e:
sublime.status_message("Vintageous: (substitute) %s" % e)
print("Vintageous: (substitute) %s" % e)
return
else:
if len(parts) == 4:
# This is a full command in the form :s/foo/bar/g 100 or a
# partial version of it.
(pattern, replacement, flags, count) = parts
else:
# This is a short command in the form :s g 100 or a partial
# version of it.
(flags, count) = parts
pattern = ExSubstitute.most_recent_pat
replacement = ExSubstitute.most_recent_replacement
if not pattern:
pattern = ExSubstitute.most_recent_pat
else:
ExSubstitute.most_recent_pat = pattern
ExSubstitute.most_recent_replacement = replacement
ExSubstitute.most_recent_flags = flags
computed_flags = 0
computed_flags |= re.IGNORECASE if (flags and 'i' in flags) else 0
try:
pattern = re.compile(pattern, flags=computed_flags)
except Exception as e:
sublime.status_message("Vintageous [regex error]: %s ... in pattern '%s'" % (e.message, pattern))
print("Vintageous [regex error]: %s ... in pattern '%s'" % (e.message, pattern))
return
replace_count = 0 if (flags and 'g' in flags) else 1
target_region = get_region_by_range(self.view, line_range=line_range, as_lines=True)
for r in reversed(target_region):
line_text = self.view.substr(self.view.line(r))
rv = re.sub(pattern, replacement, line_text, count=replace_count)
self.view.replace(edit, self.view.line(r), rv)
class ExDelete(sublime_plugin.TextCommand):
def run(self, edit, line_range=None, register='', count=''):
# XXX somewhat different to vim's behavior
rs = get_region_by_range(self.view, line_range=line_range)
self.view.sel().clear()
to_store = []
for r in rs:
self.view.sel().add(r)
if register:
to_store.append(self.view.substr(self.view.full_line(r)))
if register:
text = ''.join(to_store)
# needed for lines without a newline character
if not text.endswith('\n'):
text = text + '\n'
set_register(text, register)
self.view.run_command('split_selection_into_lines')
self.view.run_command('run_macro_file',
{'file': 'Packages/Default/Delete Line.sublime-macro'})
class ExGlobal(sublime_plugin.TextCommand):
"""Ex command(s): :global
:global filters lines where a pattern matches and then applies the supplied
action to all those lines.
Examples:
:10,20g/FOO/delete
This command deletes all lines between line 10 and line 20 where 'FOO'
matches.
:g:XXX:s!old!NEW!g
This command replaces all instances of 'old' with 'NEW' in every line
where 'XXX' matches.
By default, :global searches all lines in the buffer.
If you want to filter lines where a pattern does NOT match, add an
exclamation point:
:g!/DON'T TOUCH THIS/delete
"""
most_recent_pat = None
def run(self, edit, line_range=None, forced=False, pattern=''):
if not line_range['text_range']:
line_range['text_range'] = '%'
line_range['left_ref'] = '%'
try:
global_pattern, subcmd = parsers.g_cmd.split(pattern)
except ValueError:
msg = "Vintageous: Bad :global pattern. (%s)" % pattern
sublime.status_message(msg)
print(msg)
return
if global_pattern:
ExGlobal.most_recent_pat = global_pattern
else:
global_pattern = ExGlobal.most_recent_pat
# Make sure we always have a subcommand to exectute. This is what
# Vim does too.
subcmd = subcmd or 'print'
rs = get_region_by_range(self.view, line_range=line_range, as_lines=True)
for r in rs:
try:
match = re.search(global_pattern, self.view.substr(r))
except Exception as e:
msg = "Vintageous (global): %s ... in pattern '%s'" % (str(e), global_pattern)
sublime.status_message(msg)
print(msg)
return
if (match and not forced) or (not match and forced):
GLOBAL_RANGES.append(r)
# don't do anything if we didn't found any target ranges
if not GLOBAL_RANGES:
return
self.view.window().run_command('vi_colon_input',
{'cmd_line': ':' +
str(self.view.rowcol(r.a)[0] + 1) +
subcmd})
class ExPrint(sublime_plugin.TextCommand):
def run(self, edit, line_range=None, count='1', flags=''):
if not count.isdigit():
flags, count = count, ''
rs = get_region_by_range(self.view, line_range=line_range)
to_display = []
for r in rs:
for line in self.view.lines(r):
text = self.view.substr(line)
if '#' in flags:
row = self.view.rowcol(line.begin())[0] + 1
else:
row = ''
to_display.append((text, row))
v = self.view.window().new_file()
v.set_scratch(True)
if 'l' in flags:
v.settings().set('draw_white_space', 'all')
for t, r in to_display:
v.insert(edit, v.size(), (str(r) + ' ' + t + '\n').lstrip())
# TODO: General note for all :q variants:
# ST has a notion of hot_exit, whereby it preserves all buffers so that they
# can be restored next time you open ST. With this option on, all :q
# commands should probably execute silently even if there are unsaved buffers.
# Sticking to Vim's behavior closely here makes for a worse experience
# because typically you don't start ST as many times.
class ExQuitCommand(sublime_plugin.WindowCommand):
"""Ex command(s): :quit
Closes the window.
* Don't close the window if there are dirty buffers
TODO:
(Doesn't make too much sense if hot_exit is on, though.)
Although ST's window command 'exit' would take care of this, it
displays a modal dialog, so spare ourselves that.
"""
def run(self, forced=False, count=1, flags=''):
v = self.window.active_view()
if forced:
v.set_scratch(True)
if v.is_dirty():
sublime.status_message("There are unsaved changes!")
return
self.window.run_command('close')
if len(self.window.views()) == 0:
self.window.run_command('close')
class ExQuitAllCommand(sublime_plugin.WindowCommand):
"""Ex command(s): :qall
Close all windows and then exit Sublime Text.
If there are dirty buffers, exit only if :qall!.
"""
def run(self, forced=False):
if forced:
for v in self.window.views():
if v.is_dirty():
v.set_scratch(True)
elif is_any_buffer_dirty(self.window):
sublime.status_message("There are unsaved changes!")
return
self.window.run_command('close_all')
self.window.run_command('exit')
class ExWriteAndQuitCommand(sublime_plugin.TextCommand):
"""Ex command(s): :wq
Write and then close the active buffer.
"""
def run(self, edit, line_range=None, forced=False):
# TODO: implement this
if forced:
ex_error.handle_not_implemented()
return
if self.view.is_read_only():
sublime.status_message("Can't write a read-only buffer.")
return
if not self.view.file_name():
sublime.status_message("Can't save a file without name.")
return
self.view.run_command('save')
self.view.window().run_command('ex_quit')
class ExBrowse(sublime_plugin.TextCommand):
def run(self, edit):
self.view.window().run_command('prompt_open_file')
class ExEdit(sublime_plugin.TextCommand):
def run_(self, args):
self.run(args)
def run(self, forced=False):
# todo: restore active line_nr too
if forced or not self.view.is_dirty():
self.view.run_command('revert')
return
elif self.view.is_dirty():
ex_error.display_error(ex_error.ERR_UNSAVED_CHANGES)
return
ex_error.handle_not_implemented()
class ExCquit(sublime_plugin.TextCommand):
def run(self, edit):
self.view.window().run_command('exit')
class ExExit(sublime_plugin.TextCommand):
"""Ex command(s): :x[it], :exi[t]
Like :wq, but write only when changes have been made.
TODO: Support ranges, like :w.
"""
def run(self, edit, line_range=None):
w = self.view.window()
if w.active_view().is_dirty():
w.run_command('save')
w.run_command('close')
if len(w.views()) == 0:
w.run_command('close')
class ExListRegisters(sublime_plugin.TextCommand):
"""Lists registers in quick panel and saves selected to `"` register.
In Vintageous, registers store lists of values (due to multiple selections).
"""
def run(self, edit):
state = VintageState(self.view)
pairs = ['"{0} {1}'.format(k, v) for k, v in state.registers.to_dict().items() if v]
self.view.window().show_quick_panel(pairs, self.on_done)
def on_done(self, idx):
"""Save selected value to `"` register."""
if idx == -1:
return
state = VintageState(self.view)
value = list(state.registers.to_dict().values())[idx]
state.registers['"'] = value
class ExNew(sublime_plugin.TextCommand):
"""Ex command(s): :new
Create a new buffer.
TODO: Create new buffer by splitting the screen.
"""
def run(self, edit, line_range=None):
self.view.window().run_command('new_file')
class ExYank(sublime_plugin.TextCommand):
"""Ex command(s): :y[ank]
"""
def run(self, edit, line_range, register=None, count=None):
if not register:
register = '"'
regs = get_region_by_range(self.view, line_range)
text = '\n'.join([self.view.substr(line) for line in regs])
g_registers[register] = text
if register == '"':
g_registers['0'] = text
class TabControlCommand(sublime_plugin.WindowCommand):
def run(self, command, file_name=None, forced=False):
window = self.window
selfview = window.active_view()
max_index = len(window.views())
(group, index) = window.get_view_index(selfview)
if (command == "open"):
if file_name is None: # TODO: file completion
window.run_command("show_overlay", {"overlay": "goto", "show_files": True, })
else:
cur_dir = os.path.dirname(selfview.file_name())
window.open_file(os.path.join(cur_dir, file_name))
elif command == "next":
window.run_command("select_by_index", {"index": (index + 1) % max_index}, )
elif command == "prev":
window.run_command("select_by_index", {"index": (index + max_index - 1) % max_index, })
elif command == "last":
window.run_command("select_by_index", {"index": max_index - 1, })
elif command == "first":
window.run_command("select_by_index", {"index": 0, })
elif command == "only":
for view in window.views_in_group(group):
if view.id() != selfview.id():
window.focus_view(view)
window.run_command("ex_quit", {"forced": forced})
window.focus_view(selfview)
else:
sublime.status_message("Unknown TabControl Command")
class ExTabOpenCommand(sublime_plugin.WindowCommand):
def run(self, file_name=None):
self.window.run_command("tab_control", {"command": "open", "file_name": file_name}, )
class ExTabNextCommand(sublime_plugin.WindowCommand):
def run(self):
self.window.run_command("tab_control", {"command": "next"}, )
class ExTabPrevCommand(sublime_plugin.WindowCommand):
def run(self):
self.window.run_command("tab_control", {"command": "prev"}, )
class ExTabLastCommand(sublime_plugin.WindowCommand):
def run(self):
self.window.run_command("tab_control", {"command": "last"}, )
class ExTabFirstCommand(sublime_plugin.WindowCommand):
def run(self):
self.window.run_command("tab_control", {"command": "first"}, )
class ExTabOnlyCommand(sublime_plugin.WindowCommand):
def run(self, forced=False):
self.window.run_command("tab_control", {"command": "only", "forced": forced, }, )