0

:jumps returns a list of the jumps, but when I press < Ctrl-O> or < Ctrl-I> nothing happens. Any ideas of why this is happening?

Sara
  • 833
  • 2
  • 9
  • 21

2 Answers2

2

I think you somehow re-mapped C-O to something else.

:verbose map <c-o> will tell you what was mapped to.

from your comment, you said if you give command :verbose map <c-o>, it response n <C-o>. I think there should be something more than that.

n means Normal mode mapping, 
<C-O> means from key-bind
there should be a mapping to ? 

you typed n, it reports "Pattern not found: jumplist". I guest your last search was jumplist. to verify that, you could in normal mode type "n", and see the not found pattern word. e.g. jumplist. then type "/p see if it was your last search.

Another thing you could try is :nunmap <c-o>, then press <c-o>, see if it jumps..

Kent
  • 189,393
  • 32
  • 233
  • 301
0

Probably you don't have files you have edited before. I tried it works for me.

hmatar
  • 2,437
  • 2
  • 17
  • 27
  • I thought these keys were for moving around through the jumps. Anyway, even if the jumps are in the same file I am editing, these keys are not working. – Sara Jan 09 '13 at 00:06