diff options
author | wojciechkepka | 2021-06-20 19:31:03 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-21 03:59:06 +0000 |
commit | 618ad55dc109188970aea5de10bd801b932cbec7 (patch) | |
tree | c9932dd3e2ed864eaed470f60ea0d460932366e5 /book/src | |
parent | d39a764399b87f1127f4aedc75cb562269df4fcc (diff) |
Update docs
Diffstat (limited to 'book/src')
-rw-r--r-- | book/src/configuration.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/book/src/configuration.md b/book/src/configuration.md index 087d3fbb..5ca23911 100644 --- a/book/src/configuration.md +++ b/book/src/configuration.md @@ -4,7 +4,8 @@ To override global configuration parameters create a `config.toml` file located ## LSP -To disable language server progress report from being displayed in the status bar add this option to your `config.toml`: +To display all language server messages in the status line add the following to your `config.toml`: ```toml -lsp-progress = false +[lsp] +display-messages = true ``` |