neovim

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

commit b1207e5080087fa0ad05d13787a02ebee3f20ac0
parent 2ab52bd9889790dc7e47a09e801751aada418727
Author: Javier López <graulopezjavier@gmail.com>
Date:   Sat, 19 Mar 2022 15:32:18 -0500

docs: properly escape to avoid doxygen weirdness

If this is not properly escaped doxygen 1.9.3 will not work correctly,
and the documentation generated in local machines will differ with what
is generated in CI.

Diffstat:
Msrc/nvim/api/win_config.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/nvim/api/win_config.c b/src/nvim/api/win_config.c @@ -126,7 +126,7 @@ /// [ "╔", "═" ,"╗", "║", "╝", "═", "╚", "║" ]. /// If the number of chars are less than eight, they will be repeated. Thus /// an ASCII border could be specified as -/// [ "/", "-", "\\", "|" ], +/// [ "/", "-", \"\\\\\", "|" ], /// or all chars the same as /// [ "x" ]. /// An empty string can be used to turn off a specific border, for instance,