-
Notifications
You must be signed in to change notification settings - Fork 0
/
ropevim.py
526 lines (426 loc) · 16.5 KB
/
ropevim.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
"""ropevim, a vim mode for using rope refactoring library"""
from __future__ import print_function
import os
import re
import sys
import tempfile
import ropemode.decorators
import ropemode.environment
import ropemode.interface
import vim
if sys.version_info[0] == 3:
python_cmd = 'python3'
else:
python_cmd = 'python'
class VimUtils(ropemode.environment.Environment):
def ask(self, prompt, default=None, starting=None):
if starting is None:
starting = ''
if default is not None:
prompt = prompt + ('[%s] ' % default)
result = call('input("%s", "%s")' % (prompt, starting))
if default is not None and result == '':
return default
return result
def ask_values(self, prompt, values, default=None,
starting=None, show_values=None):
if show_values or (show_values is None and len(values) < 14):
self._print_values(values)
if default is not None:
prompt = prompt + ('[%s] ' % default)
starting = starting or ''
_completer.values = values
answer = call('input("%s", "%s", "customlist,RopeValueCompleter")' %
(prompt, starting))
if answer is None:
if 'cancel' in values:
return 'cancel'
return
if default is not None and not answer:
return default
if answer.isdigit() and 0 <= int(answer) < len(values):
return values[int(answer)]
return answer
def _print_values(self, values):
numbered = []
for index, value in enumerate(values):
numbered.append('%s. %s' % (index, str(value)))
echo('\n'.join(numbered) + '\n')
def ask_directory(self, prompt, default=None, starting=None):
return call('input("%s", ".", "dir")' % prompt)
def ask_completion(self, prompt, values, starting=None):
if self.get('vim_completion') and 'i' in call('mode()'):
if not self.get('extended_complete', False):
proposals = u','.join(u"'%s'" % self._completion_text(proposal)
for proposal in values)
else:
proposals = u','.join(self._extended_completion(proposal)
for proposal in values)
col = int(call('col(".")'))
if starting:
col -= len(starting)
command = u'call complete(%s, [%s])' % (col, proposals)
vim.command(command.encode(self._get_encoding()))
return None
return self.ask_values(prompt, values, starting=starting,
show_values=False)
def message(self, message):
echo(message)
def yes_or_no(self, prompt):
return self.ask_values(prompt, ['yes', 'y', 'no', 'n']).lower() \
in ['yes', 'y']
def y_or_n(self, prompt):
return self.yes_or_no(prompt)
def get(self, name, default=None):
vimname = 'g:ropevim_%s' % name
if str(vim.eval('exists("%s")' % vimname)) == '0':
return default
result = vim.eval(vimname)
if isinstance(result, str) and result.isdigit():
return int(result)
return result
def get_offset(self):
result = self._position_to_offset(*self.cursor)
return result
def _get_encoding(self):
return vim.eval('&encoding')
def _encode_line(self, line):
return line.encode(self._get_encoding())
def _decode_line(self, line):
return line.decode(self._get_encoding())
def _position_to_offset(self, lineno, colno):
result = min(colno, len(self.buffer[lineno - 1]) + 1)
for line in self.buffer[:lineno-1]:
line = self._decode_line(line)
result += len(line) + 1
return result
def get_text(self):
return self._decode_line('\n'.join(self.buffer)) + u'\n'
def get_region(self):
beg_mark = self.buffer.mark('<')
end_mark = self.buffer.mark('>')
if beg_mark and end_mark:
start = self._position_to_offset(*beg_mark)
end = self._position_to_offset(*end_mark)
return start, end
else:
return 0, 0
@property
def buffer(self):
return vim.current.buffer
def _get_cursor(self):
lineno, col = vim.current.window.cursor
line = self._decode_line(vim.current.line[:col])
col = len(line)
return (lineno, col)
def _set_cursor(self, cursor):
lineno, col = cursor
line = self._decode_line(vim.current.line)
line = self._encode_line(line[:col])
col = len(line)
vim.current.window.cursor = (lineno, col)
cursor = property(_get_cursor, _set_cursor)
def filename(self):
return self.buffer.name
def is_modified(self):
return vim.eval('&modified')
def goto_line(self, lineno):
self.cursor = (lineno, 0)
def insert_line(self, line, lineno):
self.buffer[lineno - 1:lineno - 1] = [line]
def insert(self, text):
lineno, colno = self.cursor
line = self.buffer[lineno - 1]
self.buffer[lineno - 1] = line[:colno] + text + line[colno:]
self.cursor = (lineno, colno + len(text))
def delete(self, start, end):
lineno1, colno1 = self._offset_to_position(start - 1)
lineno2, colno2 = self._offset_to_position(end - 1)
lineno, colno = self.cursor
if lineno1 == lineno2:
line = self.buffer[lineno1 - 1]
self.buffer[lineno1 - 1] = line[:colno1] + line[colno2:]
if lineno == lineno1 and colno >= colno1:
diff = colno2 - colno1
self.cursor = (lineno, max(0, colno - diff))
def _offset_to_position(self, offset):
text = self.get_text()
lineno = text.count('\n', 0, offset) + 1
try:
colno = offset - text.rindex('\n', 0, offset) - 1
except ValueError:
colno = offset
return lineno, colno
def filenames(self):
result = []
for buffer in vim.buffers:
if buffer.name:
result.append(buffer.name)
return result
def save_files(self, filenames):
vim.command('wall')
def reload_files(self, filenames, moves={}):
initial = self.filename()
for filename in filenames:
self.find_file(moves.get(filename, filename), force=True)
if initial:
self.find_file(initial)
def _open_file(self, filename, new=False):
open_in_tab = vim.eval('g:ropevim_open_files_in_tabs')
if open_in_tab == '1':
vim.command('tab edit! %s' % filename)
return
if new in ('new', 'vnew'):
vim.command(new)
vim.command('edit! %s' % filename)
def find_file(self, filename, readonly=False, other=False, force=False):
if filename != self.filename() or force:
self._open_file(filename, new=other)
if readonly:
vim.command('set nomodifiable')
def create_progress(self, name):
return VimProgress(name)
def current_word(self):
return vim.eval('expand("<cword>")')
def push_mark(self):
vim.command('mark `')
def prefix_value(self, prefix):
return prefix
def show_occurrences(self, locations):
self._quickfixdefs(locations)
def _quickfixdefs(self, locations):
filename = os.path.join(tempfile.gettempdir(), tempfile.mktemp())
try:
self._writedefs(locations, filename)
vim.command('let old_errorfile = &errorfile')
vim.command('let old_errorformat = &errorformat')
vim.command('set errorformat=%f:%l:\ %m')
vim.command('cfile ' + filename)
vim.command('let &errorformat = old_errorformat')
vim.command('let &errorfile = old_errorfile')
finally:
os.remove(filename)
def _writedefs(self, locations, filename):
tofile = open(filename, 'w')
try:
for location in locations:
# FIXME seems suspicious lineno = location.lineno
err = '%s:%d: %s %s\n' % (
os.path.relpath(location.filename), location.lineno,
location.note, location.line_content)
echo(err)
tofile.write(err)
finally:
tofile.close()
def show_doc(self, docs, altview=False):
if docs:
echo(docs)
def preview_changes(self, diffs):
echo(diffs)
return self.y_or_n('Do the changes? ')
def local_command(self, name, callback, key=None, prefix=False):
self._add_command(name, callback, key, prefix,
prekey=self.get('local_prefix'))
def global_command(self, name, callback, key=None, prefix=False):
self._add_command(name, callback, key, prefix,
prekey=self.get('global_prefix'))
def add_hook(self, name, callback, hook):
mapping = {'before_save': 'FileWritePre,BufWritePre',
'after_save': 'FileWritePost,BufWritePost',
'exit': 'VimLeave'}
self._add_function(name, callback)
vim.command('autocmd %s *.py call %s()' %
(mapping[hook], _vim_name(name)))
def _add_command(self, name, callback, key, prefix, prekey):
self._add_function(name, callback, prefix)
vim.command('command! -range %s call %s()' %
(_vim_name(name), _vim_name(name)))
if key is not None:
key = prekey + key.replace(' ', '')
vim.command('map %s :call %s()<cr>' % (key, _vim_name(name)))
def _add_function(self, name, callback, prefix=False):
globals()[name] = callback
arg = 'None' if prefix else ''
vim.command('function! %s() range\n' % _vim_name(name) +
'%s ropevim.%s(%s)\n' % (python_cmd, name, arg) +
'endfunction\n')
def _completion_data(self, proposal):
return proposal
_docstring_re = re.compile('^[\s\t\n]*([^\n]*)')
def _extended_completion(self, proposal):
# we are using extended complete and return dicts instead of strings.
# `ci` means "completion item". see `:help complete-items`
ci = {'word': proposal.name}
scope = proposal.scope[0].upper()
type_ = proposal.type
info = None
if proposal.scope == 'parameter_keyword':
scope = ' '
type_ = 'param'
if not hasattr(proposal, 'get_default'):
# old version of rope
pass
else:
default = proposal.get_default()
if default is None:
info = '*'
else:
info = '= %s' % default
elif proposal.scope == 'keyword':
scope = ' '
type_ = 'keywd'
elif proposal.scope == 'attribute':
scope = 'M'
if proposal.type == 'function':
type_ = 'meth'
elif proposal.type == 'instance':
type_ = 'prop'
elif proposal.type == 'function':
type_ = 'func'
elif proposal.type == 'instance':
type_ = 'inst'
elif proposal.type == 'module':
type_ = 'mod'
if info is None:
obj_doc = proposal.get_doc()
if obj_doc:
info = self._docstring_re.match(obj_doc).group(1)
else:
info = ''
if type_ is None:
type_ = ' '
else:
type_ = type_.ljust(5)[:5]
ci['menu'] = ' '.join((scope, type_, info))
ret = u'{%s}' % \
u','.join(u'"%s":"%s"' %
(key, value.replace('"', '\\"'))
for (key, value) in ci.iteritems())
return ret
def _vim_name(name):
tokens = name.split('_')
newtokens = ['Rope'] + [token.title() for token in tokens]
return ''.join(newtokens)
class VimProgress(object):
def __init__(self, name):
self.name = name
self.last = 0
echo('%s ... ' % self.name)
def update(self, percent):
try:
vim.eval('getchar(0)')
except vim.error:
raise KeyboardInterrupt('Task %s was interrupted!' % self.name)
if percent > self.last + 4:
echo('%s ... %s%%%%' % (self.name, percent))
self.last = percent
def done(self):
echo('%s ... done' % self.name)
def echo(message):
if isinstance(message, unicode):
message = message.encode(vim.eval('&encoding'))
vim.command('echo "{}"'.format(message))
def call(command):
return vim.eval(command)
class _ValueCompleter(object):
def __init__(self):
self.values = []
vim.command('%s import vim' % python_cmd)
vim.command('function! RopeValueCompleter(A, L, P)\n'
'%s args = [vim.eval("a:" + p) for p in "ALP"]\n'
'%s ropevim._completer(*args)\n'
'return s:completions\n'
'endfunction\n' % (python_cmd, python_cmd))
def __call__(self, arg_lead, cmd_line, cursor_pos):
# don't know if self.values can be empty but better safe then sorry
if self.values:
if not isinstance(self.values[0], basestring):
result = [proposal.name for proposal in self.values
if proposal.name.startswith(arg_lead)]
else:
result = [proposal for proposal in self.values
if proposal.startswith(arg_lead)]
vim.command('let s:completions = %s' % result)
variables = {'ropevim_enable_autoimport': 1,
'ropevim_autoimport_underlineds': 0,
'ropevim_codeassist_maxfixes': 1,
'ropevim_enable_shortcuts': 1,
'ropevim_open_files_in_tabs': 0,
'ropevim_autoimport_modules': '[]',
'ropevim_confirm_saving': 0,
'ropevim_local_prefix': '"<C-c>r"',
'ropevim_global_prefix': '"<C-x>p"',
'ropevim_vim_completion': 0,
'ropevim_guess_project': 0}
shortcuts = {'code_assist': '<M-/>',
'lucky_assist': '<M-?>',
'goto_definition': '<C-c>g',
'show_doc': '<C-c>d',
'find_occurrences': '<C-c>f'}
insert_shortcuts = {'code_assist': '<M-/>',
'lucky_assist': '<M-?>'}
menu_structure = (
'open_project',
'close_project',
'find_file',
'undo',
'redo',
None, # separator
'rename',
'extract_variable',
'extract_method',
'inline',
'move',
'restructure',
'use_function',
'introduce_factory',
'change_signature',
'rename_current_module',
'move_current_module',
'module_to_package',
None, # separator
'code_assist',
'goto_definition',
'show_doc',
'find_occurrences',
'lucky_assist',
'jump_to_global',
'show_calltip',
)
def _init_variables():
for variable, default in variables.items():
vim.command('if !exists("g:%s")\n' % variable +
' let g:%s = %s\n' % (variable, default))
def _enable_shortcuts(env):
if env.get('enable_shortcuts'):
for command, shortcut in shortcuts.items():
vim.command('map %s :call %s()<cr>' %
(shortcut, _vim_name(command)))
for command, shortcut in insert_shortcuts.items():
command_name = _vim_name(command) + 'InsertMode'
vim.command('func! %s()\n' % command_name +
'call %s()\n' % _vim_name(command) +
'return ""\n'
'endfunc')
vim.command('imap %s <C-R>=%s()<cr>' % (shortcut, command_name))
def _add_menu(env, root_node='&Ropevim'):
cmd_tmpl = '%s <silent> %s.%s :call %s()<cr>'
vim.command('silent! aunmenu %s' % root_node)
for i, cb in enumerate(menu_structure):
if cb is None:
vim.command('amenu <silent> %s.-SEP%s- :' % (root_node, i))
continue
# use_function -> Use\ Function
name = cb.replace('_', '\ ').title()
for cmd in ('amenu', 'vmenu'):
vim.command(cmd_tmpl % (cmd, root_node, name, _vim_name(cb)))
ropemode.decorators.logger.message = echo
ropemode.decorators.logger.only_short = True
_completer = _ValueCompleter()
_init_variables()
_env = VimUtils()
_interface = ropemode.interface.RopeMode(env=_env)
_interface.init()
_enable_shortcuts(_env)
_add_menu(_env)
_add_menu(_env, 'PopUp.&Ropevim') # menu weight can also be added