File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ Install with commands:
107107 apt-get update
108108 apt-get install vim-python-mode
109109
110- If you are getting the message: "The following signatures couldn' be verified because the public key is not available": ::
110+ If you are getting the message: "The following signatures couldn't be verified because the public key is not available": ::
111111
112112 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B5DF65307000E266
113113
@@ -126,7 +126,7 @@ If your python-mode doesn't work:
126126
127127 vim -u <path_to_pymode>/debug.vim
128128
129- And try to repeat your case. If no error occurs, seems like problem isnt in the
129+ And try to repeat your case. If no error occurs, seems like problem isn't in the
130130plugin.
131131
1321322. Type `:PymodeTroubleshooting `
@@ -136,6 +136,21 @@ creating a `new github issue <https://github.com/klen/python-mode/issues/new>`_
136136if one does not already exist for the problem).
137137
138138
139+ Customization
140+ =============
141+
142+ You can override the default key bindings by redefining them in your `.vimrc `, for example: ::
143+
144+ " Override go-to.definition key shortcut to Ctrl-]
145+ let g:pymode_rope_goto_definition_bind = "<C-]>"
146+
147+ " Override run current python file key shortcut to Ctrl-Shift-e
148+ let g:pymode_run_bind = "<C-S-e>"
149+
150+ " Override view python doc key shortcut to Ctrl-Shift-d
151+ let g:pymode_doc_bind = "<C-S-d>"
152+
153+
139154Documentation
140155=============
141156
You can’t perform that action at this time.
0 commit comments