neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 79afdae2f3bbf5572d04f3900a80ac62f01fd76f
parent 078e49b96a4f3e4255371cd40c18295bab2149d0
Author: Thomas Vigouroux <thomas.vigouroux@protonmail.com>
Date:   Thu,  8 Sep 2022 08:20:27 +0200

Merge pull request #20114 from zeertzjq/ts-docs

docs(treesitter): fix doxygen comment
Diffstat:
Mruntime/doc/treesitter.txt | 3++-
Mruntime/lua/vim/treesitter.lua | 2+-
2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/runtime/doc/treesitter.txt b/runtime/doc/treesitter.txt @@ -452,7 +452,8 @@ start({bufnr}, {lang}) *start()* Can be used in an ftplugin or FileType autocommand Note: By default, disables regex syntax highlighting, which may be - required for some plugins. In this case, add vim.bo.syntax = 'on `after the call to` start`. + required for some plugins. In this case, add `vim.bo.syntax = 'on'` after + the call to `start`. Example: > diff --git a/runtime/lua/vim/treesitter.lua b/runtime/lua/vim/treesitter.lua @@ -247,7 +247,7 @@ end --- Can be used in an ftplugin or FileType autocommand --- --- Note: By default, disables regex syntax highlighting, which may be required for some plugins. ---- In this case, add `vim.bo.syntax = 'on'` after the call to `start`. +--- In this case, add ``vim.bo.syntax = 'on'`` after the call to `start`. --- --- Example: ---