From 55383afb4d783c619318b01485699590e60d3ea1 Mon Sep 17 00:00:00 2001 From: Frank LENORMAND Date: Wed, 10 Jun 2020 12:29:52 +0300 Subject: [PATCH] doc faq: Mention the Language Server Protocol --- doc/pages/faq.asciidoc | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/doc/pages/faq.asciidoc b/doc/pages/faq.asciidoc index 31e9901d..73763876 100644 --- a/doc/pages/faq.asciidoc +++ b/doc/pages/faq.asciidoc @@ -189,8 +189,13 @@ dedicated tool, as is the case with `clang` and C code: you can use the `clang-enable-autocomplete` and `clang-complete` builtin commands whenever editing a C/C++ file, and completion will work on function parameters. -Note that the same features are available for Python buffers, with the -`jedi` script. +Other language-support scripts implement this functionality in a similar way, +for example the `jedi` script for Python buffers. + +Another way to get automatic parameter completion that doesn't depend on +built-in support in Kakoune is through the +https://microsoft.github.io/language-server-protocol/[Language Server Protocol], +for which you can find implementations that interact with the editor. === Why aren't widely known command line shortcuts such as or available in Kakoune ?