python-rope / ropevim

vim mode that uses rope library to provide features like python refactorings and code-assists
GNU General Public License v2.0
245 stars 34 forks source link

Closes #83. Change :map -> :noremap #85

Closed Jasha10 closed 3 years ago

Jasha10 commented 3 years ago

This pull request resolves an issue with vim maps defined by ropevim.py having remapping enabled.

As mentioned in #83, if the user defines a mapping such as

noremap : <nop>

in their .vimrc, then all of the mappings defined by ropevim will fail. This issue is resolved by changing the ropevim map declarations from :map ... to :noremap ....