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
{{ message }}
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Hello 👋
Lately I started noticing that autocomplete stopped working inside <script> tags in HTML on one of my machines.
I checked the dev tools log and found thousands of these errors:
Uncaught (in promise) TypeError: Cannot set property 'currentSuggestions' of null
at TypeScriptLanguageClient.getSuggestions (/Users/bennyp/dotfiles/atom/packages/ide-typescript/lib/main.js:58:40)
Sepcifically, the nullable here is the language server, from
When getServer runs in the case where i don't have a JS file open, this._activeServers.find(s => finalProjectPath === s.projectPath); returns undefined, which leads me to believe that the js language server does not run when there are no .js files open
Hello 👋
Lately I started noticing that autocomplete stopped working inside
<script>
tags in HTML on one of my machines.I checked the dev tools log and found thousands of these errors:
Sepcifically, the nullable here is the language server, from
Y'all ready for this? if there's a
.js
file open in another tab, autocomplete works a treat. As soon as I close the file, it stops working.The text was updated successfully, but these errors were encountered: