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

Shorcuts created as non-recursive mapping #83

Closed vecin2 closed 3 years ago

vecin2 commented 4 years ago

After installing Ropevim none of the shortcuts was working even tho I could see when running the :map

...
<C-U>       * :call smooth_scroll#up(&scroll, 0, 2)<CR>
<C-C>f        :call RopeFindOccurrences()<CR>
...

What I've noticed on that output of that command was that shortcuts are created are a recursive mapping. So I wen't through all my vim config and I found that the line was breaking was following: noremap : <nop>

This is the original issue opened in stackoverflow.

Jasha10 commented 3 years ago

I have the same issue.