Prior to setting cscopequickfix to use vim's quickfix window (via :set cscopequickfix=s-,c-,d-,i-,t-,e-
), jumping to cscope tags (e.g. with :cs find s
) would cause the jumps to be pushed onto the tagstack (see :h tagstack
). When those jumps are in the tagstack, you can jump back to previous tags with CTRL-T
.
After setting cscopequickfix, jumps don't seem to be pushed on the tagstack (verified with :tags
). This presents a problem because now I can't jump between tags.
How can I get cscope tag jumps pushed onto the tagstack when cscopequickfix is configured to use the quickfix window?
FYI, the best workaround I have atm is to use the jump list instead (CTRL-O
).