Vim breadcrumbs source code

Eclipse has a “breading” function: a small panel that shows which part of the code tree you are currently located, for example. src/java/main > org.foo.bar > AbstractFactoryFactory > InnerDefaultFactory > SomeNeatInnerRunnable > doEverything .

Does Vim have something similar, presumably some kind of ctags / cscope based script?

+4
source share
1 answer

I only know the CTX plugin for C code.

+1
source

Source: https://habr.com/ru/post/1338271/


All Articles