@@ -9,6 +9,7 @@ There is no need to install the pylint_, rope_ or any used python library on you
99
1010- Highlight syntax errors
1111- Highlight and auto fix unused imports
12+ - Python objects and motion (]], ]m, vac, vim, dim, ...)
1213- Strong code completion
1314- Code refactoring
1415- Python documentation
@@ -27,16 +28,10 @@ See screencast here: http://t.co/3b0bzeXA (sorry for quality, this is my first s
2728Changelog
2829=========
2930
30- ## 2011-11-23 0.4.6
31+ ## 2011-11-30 0.5.0
3132-------------------
32- * Enable all syntax highlighting
33- For old settings set in your vimrc: ::
34-
35- let g:pymode_syntax_builtin_objs = 0
36- let g:pymode_syntax_builtin_funcs = 0
37-
38- * Change namespace of syntax variables
39- See README
33+ * Add python objects and motions (beta)
34+ :h pymode_motion
4035
4136
4237Requirements
@@ -216,6 +211,9 @@ Other stuff
216211
217212Default values: ::
218213
214+ " Load motion plugin
215+ let g:pymode_motion = 1
216+
219217 " Load breakpoints plugin
220218 let g:pymode_breakpoint = 1
221219
@@ -291,13 +289,29 @@ Default keys
291289============== =============
292290Keys Command
293291============== =============
294- **K ** Show python docs
292+ **K ** Show python docs (g:pymode_doc enabled)
293+ -------------- -------------
294+ **<C-Space> ** Rope autocomplete (g:pymode_rope enabled)
295+ -------------- -------------
296+ **<Leader>r ** Run python (g:pymode_run enabled)
297+ -------------- -------------
298+ **<Leader>b ** Set, unset breakpoint (g:pymode_breakpoint enabled)
299+ -------------- -------------
300+ [[ Jump on previous class or function (normal, visual, operator modes)
301+ -------------- -------------
302+ ]] Jump on next class or function (normal, visual, operator modes)
303+ -------------- -------------
304+ [m Jump on previous class or method (normal, visual, operator modes)
305+ -------------- -------------
306+ ]m Jump on next class or method (normal, visual, operator modes)
307+ -------------- -------------
308+ ac Select a class. Ex: vac, dac, yac, cac (normal, operator modes)
295309-------------- -------------
296- ** <C-Space> ** Rope autocomplete
310+ ic Select inner class. Ex: vic, dic, yic, cic (normal, operator modes)
297311-------------- -------------
298- ** <Leader>r ** Run python
312+ am Select a function or method. Ex: vam, dam, yam, cam (normal, operator modes)
299313-------------- -------------
300- ** <Leader>b ** Set, unset breakpoint
314+ im Select inner function or method. Ex: vim, dim, yim, cim (normal, operator modes)
301315============== =============
302316
303317.. note :: See also ``:help ropevim.txt``
0 commit comments