Jack Cherng
Jack Cherng
> An alternative solution would be to update the document of sublime LSP on how taplo can be configured https://github.com/jfcherng-sublime/ST-my-settings/blob/0146cc3e1bef21794d74962a073b4ab89c629a67/Packages/User/LSP.sublime-settings#L51-L55
> > > An alternative solution would be to update the document of sublime LSP on how taplo can be configured > > > > > > [jfcherng-sublime/ST-my-settings@`0146cc3`/Packages/User/LSP.sublime-settings#L51-L55](https://github.com/jfcherng-sublime/ST-my-settings/blob/0146cc3e1bef21794d74962a073b4ab89c629a67/Packages/User/LSP.sublime-settings#L51-L55) > >...
I think the issue we have is that `should_ignore` is only called once for a view. LSP-copilot's expectation is that we can call `should_ignore` whenever a view is activated.
> `reevaluate_should_ignore()` might have to be necessary in this case. that would be the best 😄
Some facts... - We are using the LSP server from [Copilot.vim](https://github.com/github/copilot.vim). - The [LSP server](https://github.com/github/copilot.vim/blob/782461159655b259cff10ecff05efa761e3d4764/dist/language-server.js) is not open sourced and it has no doc (literally none). @TerminalFi did some reverse...
Theoretically, when a project is open, the language server instance will be initiated. It will know the project path. So theoretically, it can do what it want to do with...
> Just out of curiosity, have you seen this project? I discovered it from digging around on language servers. > [SilasMarvin/lsp-ai](https://github.com/SilasMarvin/lsp-ai) Yes it was posted on ST Discord server before....
The error msg doesn't seem to related to this plugin. It suggests `sublime.active_window().active_view()` is `None` however.
It's known that LSP won't work on the initial buffer of a new window. But I am not sure whether this is what you mean. If people want to reproduce,...
> what you are trying to say is that is not a LSP-copilot's issue but a "general LSP" issue, right? Correct. But I am not sure whether that's what you...