aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/init.rs
Commit message (Collapse)AuthorAgeFilesLines
* make LRU cache configurableAleksey Kladov2019-06-121-3/+11
|
* Don't default publishDecorations to true on the serverFlorian Diebold2019-03-091-39/+61
| | | | | | | If the client doesn't specify this explicitly, that very likely means it doesn't know about it and so we shouldn't send decorations. In particular, the recent change to this default caused decorations to be sent to emacs, resulting in a lot of warning spam.
* Add showWorkspaceLoadedNotification to vscode clientVille Penttinen2019-03-061-0/+39
This allows users to control whether or not they want to see the "workspace loaded" notification. This is done on the server side using InitializationOptions which are provided by the client. By default show_workspace_loaded is true, meaning the notification is sent.