Results 1049 comments of Randy Lai

What version of languageserver are you using? The latest version should fix a related issue if your file contains non ascii chars.

Well it is the latest version. Do your files or file names contain non ascii chars?

Do the names of the files or directories contain non ascii chars?

stringi was updated a while ago. For some reasons, stringi’s binary for R-release is still not available on Windows https://cran.r-project.org/web/packages/stringi/index.html I believe it’s a temporary thing and it will get...

It would be a bit tricky, for instance, consider that TEX root could be also a Sweave file.

You could check https://github.com/REditorSupport/languageserver/blob/master/R/document.R#L228 to see how the parser hooks work.

I guess we could make it a background process. The current task manager is not powerful enough to handle this situation. Also, we are not executing the `$/cancelRequest` request, not...

Currently, only the R files under the R directory of a package are automatically indexed. Any other files need to be opened manually in order to for the server to...

What about finding and importing the `Default` module to python 3.3? ```py loader = sublime_plugin.multi_importer.find_module("Default") mod = loader.load_module("Default") sys.modules["Default"] = mod import Default.exec ```