diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-07-15 00:54:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-15 06:54:45 +0800 |
commit | 04c158fbec9aeeccd7bd1bb16fc8a688edadd353 (patch) | |
tree | 373aa0c994bb49fc796200aefc01eed2265f78c1 /src/nvim/edit.c | |
parent | da9e9387934554c069c763fb432aba1b83edb999 (diff) | |
download | rneovim-04c158fbec9aeeccd7bd1bb16fc8a688edadd353.tar.gz rneovim-04c158fbec9aeeccd7bd1bb16fc8a688edadd353.tar.bz2 rneovim-04c158fbec9aeeccd7bd1bb16fc8a688edadd353.zip |
docs: misc (#29622)
Co-authored-by: Christian Clason <c.clason@uni-graz.at>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index f6e2dbfa4e..694a656323 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -2027,7 +2027,6 @@ static void insert_special(int c, int allow_modmask, int ctrlv) // '0' and '^' are special, because they can be followed by CTRL-D. #define ISSPECIAL(c) ((c) < ' ' || (c) >= DEL || (c) == '0' || (c) == '^') -/// /// "flags": INSCHAR_FORMAT - force formatting /// INSCHAR_CTRLV - char typed just after CTRL-V /// INSCHAR_NO_FEX - don't use 'formatexpr' |