-
-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: goto definition for values defined in another script #39
Comments
It can jump to the plugin vim file and works as expected for me. |
Try this in your vimrc:
Put your cursor over the Hello in the Also, for functions, after some more testing, I've found that the problem seems to be that if a function contains an underscore (
|
No, it does not support command, because it can not recognize the 'Hello' as an command in 'nmap h :Hello' |
I don't know how you test with funcrion but it works well for me. Make sure your files in workspace or vim runtime path. |
Should it handle vim9script as well as classic vimscript? With the following init options
it indexes all of my classic vimscript plugins, but |
vim9script is not support yet #78 |
First, thanks for this language server! It does its job well.
I have lots of plugins and it would be nice if I could jump to the definition of a function, a variable, or a command that is defined in another function. For example:
The result gives me the file and line where the command (or function if using
function
) was last defined. Maybe we can use this, or something like it, to locate definitions in other VimScripts?The above assumes that the user is using Vim to edit their Vimscript.
The text was updated successfully, but these errors were encountered: