vicscope

Vi + Cscope: using "cscope find c function" in vim, finds multiple results, how to go next


When I used this command to search functions who call this function, if there are more than one result, only the first one showed in the buffer, how do I go to the next one with a vi command or shortcut keys?


Solution

  • use

    :help tag-matchlist to learn more

    :tnext goes to next match and

    :tprev goes to the previous one