sublimelsp / lsp_utils

Module with LSP-related utilities for Sublime Text
https://sublimelsp.github.io/lsp_utils/
MIT License
16 stars 6 forks source link

fix: additional paths shouldn't be duplicated every time a new session starts #120

Closed jfcherng closed 5 months ago

jfcherng commented 5 months ago

configuration.env['PATH'] is bound to a server class and we just keep prepending the same additional paths into it every time when there is a new session starts (e.g., a project is opened in a new window). Eventually, it triggers this bug: https://github.com/TerminalFi/LSP-copilot/issues/163

jfcherng commented 5 months ago

Unit test failures are irrelevant to this PR.

rchl commented 5 months ago

thanks