File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ Install with commands:
107
107
apt-get update
108
108
apt-get install vim-python-mode
109
109
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": ::
111
111
112
112
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B5DF65307000E266
113
113
@@ -126,7 +126,7 @@ If your python-mode doesn't work:
126
126
127
127
vim -u <path_to_pymode>/debug.vim
128
128
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
130
130
plugin.
131
131
132
132
2. Type `:PymodeTroubleshooting `
@@ -136,6 +136,21 @@ creating a `new github issue <https://github.com/klen/python-mode/issues/new>`_
136
136
if one does not already exist for the problem).
137
137
138
138
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
+
139
154
Documentation
140
155
=============
141
156
You can’t perform that action at this time.
0 commit comments