diff options
author | Dundar Goc <gocdundar@gmail.com> | 2022-05-06 17:40:52 +0200 |
---|---|---|
committer | Dundar Goc <gocdundar@gmail.com> | 2022-05-06 18:03:57 +0200 |
commit | d0897243f6a6bb802fc9622486afd69eb65fa6d5 (patch) | |
tree | f1a7f276abea3255a33bff342123177873b2daca /src/nvim/screen.c | |
parent | d9ec57e16a13f66a4b17edd872786e2c67348752 (diff) | |
download | rneovim-d0897243f6a6bb802fc9622486afd69eb65fa6d5.tar.gz rneovim-d0897243f6a6bb802fc9622486afd69eb65fa6d5.tar.bz2 rneovim-d0897243f6a6bb802fc9622486afd69eb65fa6d5.zip |
build(clint): remove "function size is too large" warning
This warning is essentially only triggered for ported vim functions.
It's unlikely that we'll refactor vim functions solely based on their
size since it'd mean we'd greatly deviate from vim, which is a high cost
when it comes to importing the vim patches. Thus, this warning only
serves as an annoyance and should be removed.
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 384f2995ee..910cf335ca 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -1748,7 +1748,7 @@ static void win_update(win_T *wp, DecorProviders *providers) if (!got_int) { got_int = save_got_int; } -} // NOLINT(readability/fn_size) +} /// Returns width of the signcolumn that should be used for the whole window /// |