aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMichael Lingelbach <m.j.lbach@gmail.com>2021-07-11 11:04:07 -0700
committerGitHub <noreply@github.com>2021-07-11 11:04:07 -0700
commit32843975789ad52b10eb27e4fba2d0043aa276fa (patch)
tree51e224511045f00389d38abda3068a756d29620a /README.md
parent[docgen] Update CONFIG.md (diff)
downloadnvim-lspconfig-32843975789ad52b10eb27e4fba2d0043aa276fa.tar
nvim-lspconfig-32843975789ad52b10eb27e4fba2d0043aa276fa.tar.gz
nvim-lspconfig-32843975789ad52b10eb27e4fba2d0043aa276fa.tar.bz2
nvim-lspconfig-32843975789ad52b10eb27e4fba2d0043aa276fa.tar.lz
nvim-lspconfig-32843975789ad52b10eb27e4fba2d0043aa276fa.tar.xz
nvim-lspconfig-32843975789ad52b10eb27e4fba2d0043aa276fa.tar.zst
nvim-lspconfig-32843975789ad52b10eb27e4fba2d0043aa276fa.zip
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 95a261c3..20693d3f 100644
--- a/README.md
+++ b/README.md
@@ -70,7 +70,7 @@ For a full list of servers, see [CONFIG.md](CONFIG.md). This document contains i
## Keybindings and completion
nvim-lspconfig does not map keybindings or enable completion by default. Manual, triggered completion can be provided by neovim's built-in omnifunc. For autocompletion, a general purpose [autocompletion plugin](https://github.com/neovim/nvim-lspconfig/wiki/Autocompletion) is required. The following example configuration provides suggested keymaps for the most commonly used language server functions, and manually triggered completion with omnifunc (\<c-x\>\<c-o\>).
-Note: **you must pass the defined on_attach as an argument to every setup {} call** and **the keybindings in on_attach only take effect after the language server has started (attached to the current buffer)**.
+Note: **you must pass the defined `on_attach` as an argument to every `setup {}` call** and **the keybindings in `on_attach` only take effect after the language server has started (attached to the current buffer)**.
```vim
lua << EOF