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
Situation: I would like to use SSH FS to open php files from a server directly without indirection by WinSCP or doing a local copy of the files.
Issue: Othe VSC extentions like PHP Intelephense oder Boomarks do not work properly with files, which are opened by SSH FS.
Bookmark extention: Context menue is available. But the blue bookmark symbol left beside the line number is not showed immediately after bookmarking a line. It is showed after switching back from another opened file.
PHP Intelephense extention: "Keine Symbole im Dokument" (German for "no symbols in document"). So no information like names of variables, functions, classes are available in the left bottom corner.
Image shows the described issue:
Does SSH FS use another kind of viewing files in VSC?
The text was updated successfully, but these errors were encountered:
Basically, extensions need to use the FileSystemProvider system (what this extension uses to provide files inside VS Code), but most extensions only work with files on the local system. Extensions need to be updated to use this new extension API, which not a lot of extensions do. This is especially difficult for intellisense (language-server) extensions that execute a binary (which cna only access local files) which the extension communicates with.
In such cases, using VS Code's Remote SSH feature is better.
Thanks for writing extention SSH FS!
Situation: I would like to use SSH FS to open php files from a server directly without indirection by WinSCP or doing a local copy of the files.
Issue: Othe VSC extentions like PHP Intelephense oder Boomarks do not work properly with files, which are opened by SSH FS.
Bookmark extention: Context menue is available. But the blue bookmark symbol left beside the line number is not showed immediately after bookmarking a line. It is showed after switching back from another opened file.
PHP Intelephense extention: "Keine Symbole im Dokument" (German for "no symbols in document"). So no information like names of variables, functions, classes are available in the left bottom corner.
Image shows the described issue:
Does SSH FS use another kind of viewing files in VSC?
The text was updated successfully, but these errors were encountered: