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 ....
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
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 ...
.