diff options
author | Javier López <graulopezjavier@gmail.com> | 2022-03-19 15:32:18 -0500 |
---|---|---|
committer | Javier López <graulopezjavier@gmail.com> | 2022-03-19 15:32:18 -0500 |
commit | b1207e5080087fa0ad05d13787a02ebee3f20ac0 (patch) | |
tree | e2e8c232a495e3901a1f1c9d5ac16aeb12826083 | |
parent | 2ab52bd9889790dc7e47a09e801751aada418727 (diff) | |
download | rneovim-b1207e5080087fa0ad05d13787a02ebee3f20ac0.tar.gz rneovim-b1207e5080087fa0ad05d13787a02ebee3f20ac0.tar.bz2 rneovim-b1207e5080087fa0ad05d13787a02ebee3f20ac0.zip |
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.
-rw-r--r-- | src/nvim/api/win_config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/win_config.c b/src/nvim/api/win_config.c index b0267f5ed0..42e880dc19 100644 --- 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, |