How do I jump to a match across included files using Vim's include search?
:ijump is an include-aware jump command that searches the current file plus files discovered through your include and path settings, then jumps directly to a se
category:
navigation
tags:
#navigation
#search
#include
#command-line
How do I view all the files Vim would search when resolving include-based completions and lookups?
:checkpath! recursively walks through every file reachable via Vim's include path and displays the full include tree.
category:
navigation
tags:
#navigation
#include
#completion
#ex-commands