Do you need to configure your environment as luassert #1688
-
I started getting the following message in neovim when this server is attached. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 13 replies
-
Hello and welcome! Yes, that is a feature of the language server. That is using the "environment emulation" feature to suggest applying a library/framework when a certain keyword or filename has been found. Selecting 1 will apply the library/framework so that you get completion and intellisense for it. This will be applied to your workspace settings so that every time you load your project up, you still receive intellisense for that library/framework (at least that is how it works on VS Code, NeoVim may work differently). Selecting 2 will apply the library/framework, but only temporarily in memory, so the next time you load your project, you won't have intellisense. Selecting 3 will stop suggesting environment emulations in that workspace. |
Beta Was this translation helpful? Give feedback.
Hello and welcome!
Yes, that is a feature of the language server. That is using the "environment emulation" feature to suggest applying a library/framework when a certain keyword or filename has been found.
Selecting 1 will apply the library/framework so that you get completion and intellisense for it. This will be applied to your workspace settings so that every time you load your project up, you still receive intellisense for that library/framework (at least that is how it works on VS Code, NeoVim may work differently).
Selecting 2 will apply the library/framework, but only temporarily in memory, so the next time you load your project, you won't have intellisense.
Selecting 3 will stop …