You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Installing LSP and enabling the plugin produces a FileNotFoundError for popups.css
To Reproduce
Steps to reproduce the behavior:
Package Control: Install Package
Select "LSP"
Console produces error
Expected behavior
popups.css should be found when loading package allowing package to load
Logs
Traceback (most recent call last):
File "/Applications/Sublime Text.app/Contents/MacOS/Lib/python38/sublime_plugin.py", line 432, in load_module
m.plugin_loaded()
File "/Users/joshfrankel/Library/Application Support/Sublime Text/Installed Packages/LSP.sublime-package/boot.py", line 197, in plugin_loaded
load_css()
File "/Users/joshfrankel/Library/Application Support/Sublime Text/Installed Packages/LSP.sublime-package/plugin/core/css.py", line 23, in load
_css = CSS()
File "/Users/joshfrankel/Library/Application Support/Sublime Text/Installed Packages/LSP.sublime-package/plugin/core/css.py", line 7, in __init__
self.popups = sublime.load_resource("Packages/LSP/popups.css")
File "/Applications/Sublime Text.app/Contents/MacOS/Lib/python38/sublime.py", line 1199, in load_resource
raise FileNotFoundError(f'resource "{name}" not found')
FileNotFoundError: resource "Packages/LSP/popups.css" not found
Environment (please complete the following information):
OS: macOS Sonoma 14.5
Sublime Text version: 4169
LSP version: 2.2.0
Language servers used: ruby-lsp
Python: 3.9.6
Additional context
I am utilizing asdf-vm locally BUT python is whatever macOS has installed by default.
Sublime Text is located within the /Application folder
Sublime Text is authorized for Full Disk Access
The text was updated successfully, but these errors were encountered:
We are trying to load those resources from within a def plugin_loaded() hook so if it fails on install, it feels more like an ST issue. Though we could probably work around it.
Seems like a trivial issue if it only happens on install since it will be fine after first restart (which is recommended anyway).
Describe the bug
Installing LSP and enabling the plugin produces a FileNotFoundError for popups.css
To Reproduce
Steps to reproduce the behavior:
Expected behavior
popups.css
should be found when loading package allowing package to loadLogs
Environment (please complete the following information):
Additional context
asdf-vm
locally BUT python is whatever macOS has installed by default./Application
folderThe text was updated successfully, but these errors were encountered: