@@ -358,25 +358,25 @@ Turn on the rope script *'g:pymode_rope'*
358
358
*:PymodeRopeRegenerate* -- Regenerate the project cache
359
359
360
360
Rope uses a folder inside projects for holding project configuration and data.
361
- Its default name is `.ropeproject` If the folder doesnt exists in current
362
- working directory, parent folders will be checked.
361
+ Its default name is `.ropeproject` .
363
362
364
363
Currently it is used for things such as:
365
364
366
- * There is a config.py file in this folder in which you can change project
367
- configurations. Have look at the default config.py file (s created when it
365
+ * The config.py file in this folder contains project configuration. Have
366
+ a look at the default config.py file (which is created when it
368
367
does not exist) for more information.
369
368
* It can be used for saving project history, so that the next time you open the
370
369
project you can undo past changes.
371
- * It can be used for saving object information to help rope object inference .
372
- * It can be used for saving global names cache which is used in auto-import.
370
+ * It can be used to save information about object inferences .
371
+ * It can be used to save a global name cache, which is used for auto-import.
373
372
374
- If ``.ropeproject` ` is not found in the current directory, rope will walk
375
- upwards looking for a ``.ropeproject` ` in every dir of the parent path. If
376
- rope finds ``.ropeproject` ` in a parent dir, it sets the project for all child
377
- dirs and the scan may be slow for so many dirs and files.
373
+ If `.ropeproject` is not found in the current directory, rope will look
374
+ recursively for it in parent folders.
375
+ Warning: If rope finds `.ropeproject` in a parent dir, it will use it with
376
+ all its child directories, which may slow scanning down (because of many,
377
+ possibly unrelated, files)
378
378
379
- Enable search | .ropeproject | in parent's directories
379
+ Enable searching for | .ropeproject | in parent directories
380
380
*'g:pymode_rope_lookup_project'*
381
381
>
382
382
let g:pymode_rope_lookup_project = 1
@@ -385,7 +385,7 @@ Enable search |.ropeproject| in parent's directories
385
385
Show documentation for element under cursor ~
386
386
387
387
Show documentation for object under cursor. *'g:pymode_rope_show_doc_bind'*
388
- Leave empty for disable key binding.
388
+ Leave empty to disable the key binding.
389
389
>
390
390
let g:pymode_rope_show_doc_bind = '<C-c>d'
391
391
@@ -397,18 +397,18 @@ Regenerate project cache on every save (if file has been modified)
397
397
4.1 Completion ~
398
398
*pymode-completion*
399
399
400
- By default you could typing <Ctrl-Space> for autocompletion. Will be
400
+ By default you can use <Ctrl-Space> for autocompletion. Will be
401
401
automatically selected first entry and you can press <Return> to insert in
402
402
your code. <C-X><C-O> and <C-P> /<C-N> works too.
403
403
404
- Autocompletion is also called by typing a period in | Insert | mode.
404
+ Autocompletion is also called by typing a period in | Insert | mode by default .
405
405
406
406
407
407
Turn on code completion support in the plugin *'g:pymode_rope_completion'*
408
408
>
409
409
let g:pymode_rope_completion = 1
410
410
411
- Turn on autocompletion when you typing a period
411
+ Turn on autocompletion when typing a period
412
412
*'g:pymode_rope_complete_on_dot'*
413
413
>
414
414
let g:pymode_rope_complete_on_dot = 1
@@ -417,8 +417,8 @@ Keymap for autocomplete *'g:pymode_rope_completion_bind'*
417
417
>
418
418
let g:pymode_rope_completion_bind = '<C-Space>'
419
419
420
- Extended autocompletion (rope could complete objects wich hasnt be imported)
421
- from project *'g:pymode_rope_autoimport'*
420
+ Extended autocompletion (rope could complete objects which have not been
421
+ imported) from project *'g:pymode_rope_autoimport'*
422
422
>
423
423
let g:pymode_rope_autoimport = 1
424
424
0 commit comments