vim-delve icon indicating copy to clipboard operation
vim-delve copied to clipboard

chore: extract the first sequence of non-whitespace characters from the start of v:progname as progname

Open nuffin opened this issue 6 months ago • 0 comments

Since I always start multiple vim instances without arguments, I want to know which directory each vim process is in, so I composed a shell function as:

vimc()
{
    /bin/bash -c 'exec -a "vim (in $(basename "$PWD"))" vim "$@"'
}

Then, the vim process will show as vim (in /path/to/blah/blah) in the output of the ps command. But the vim-delve plugin does not work with it because the cache directory is not found, so I fixed it as shown in this PR.

nuffin avatar Aug 01 '25 20:08 nuffin