mtsmfm / vscode-ruby-lsc

ruby-lsc is a vscode extension to develop ruby application.
https://marketplace.visualstudio.com/items?itemName=mtsmfm.ruby-lsc
14 stars 0 forks source link

Why pass -v to the language server? #3

Open kwerle opened 6 years ago

kwerle commented 6 years ago
        args = ["run", "--rm", "-i", "-v", `${vscode.workspace.rootPath}:${vscode.workspace.rootPath}`, image];

Why map the directory? It looks like the language server caches files in memory?

mtsmfm commented 6 years ago

Good catch! I'll remove this configure because it isn't needed at this time.

I thought we'll need it because of current LSP limitations (servers can't request to fetch files).