From 037011656212a81f209b9f4d5a5fe9df87de4fa8 Mon Sep 17 00:00:00 2001 From: Petr Makhnev <51853996+i582@users.noreply.github.com> Date: Sat, 11 Mar 2023 13:00:10 +0400 Subject: [PATCH] readme: add section about editor plugins and IntelliSense (#17596) --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/README.md b/README.md index cb801f130f..e2f0fd5112 100644 --- a/README.md +++ b/README.md @@ -201,6 +201,34 @@ cd v make ``` +## Installing editor/IDE plugin + +V has plugins for many editors: + +- [VS Code plugin](https://github.com/vlang/vscode-vlang) +- [JetBrains IDE plugin](https://plugins.jetbrains.com/plugin/20287-vlang/docs/quick-start-guide.html) +- [Vim plugins](https://github.com/vlang/awesome-v#vim) +- [Emacs plugins](https://github.com/vlang/awesome-v#emacs) +- [Sublime Text 3 plugins](https://github.com/vlang/awesome-v#sublime-text-3) +- [Atom plugins](https://github.com/vlang/awesome-v#atom) + +### IntelliSense + +V has a Language Server: +[VLS](https://github.com/vlang/vls). +The VS Code plugin provides built-in support for VLS. + +> **Note** +> +> VLS may be unstable at the moment. +> If you encounter any problem, please create a new +> [issue](https://github.com/vlang/vls/issues). + +The plugin for JetBrains IDE (IntelliJ, CLion, GoLand, etc) at the moment is +the best choice if you want a great V development experience. +You can see all its features in +[its documentation](https://plugins.jetbrains.com/plugin/20287-vlang/docs/syntax-highlighting.html). + ## Testing and running the examples Make sure V can compile itself: