diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-05-15 21:01:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-15 12:01:29 -0700 |
commit | 19da1071dca51d0045dd66fbe2a594dfd6c1c445 (patch) | |
tree | 7d5a11288e2180d54828e2de07d3e8a0fb592571 /src/nvim/ex_docmd.c | |
parent | 717560d221222012d4ff9698141a0d0703eb33cc (diff) | |
download | rneovim-19da1071dca51d0045dd66fbe2a594dfd6c1c445.tar.gz rneovim-19da1071dca51d0045dd66fbe2a594dfd6c1c445.tar.bz2 rneovim-19da1071dca51d0045dd66fbe2a594dfd6c1c445.zip |
ci(clint): remove clint.py line length check #18574
uncrustify is the source of truth where possible.
Remove any redundant checks from clint.py.
See also https://github.com/neovim/neovim/pull/18563
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 2173494be9..cdf1564761 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -2739,8 +2739,6 @@ static void undo_cmdmod(const exarg_T *eap, int save_msg_scroll) } } - - /// Parse the address range, if any, in "eap". /// May set the last search pattern, unless "silent" is true. /// @@ -9870,8 +9868,8 @@ static void ex_filetype(exarg_T *eap) // Print current status. smsg("filetype detection:%s plugin:%s indent:%s", filetype_detect == kTrue ? "ON" : "OFF", - filetype_plugin == kTrue ? (filetype_detect == kTrue ? "ON" : "(on)") : "OFF", // NOLINT(whitespace/line_length) - filetype_indent == kTrue ? (filetype_detect == kTrue ? "ON" : "(on)") : "OFF"); // NOLINT(whitespace/line_length) + filetype_plugin == kTrue ? (filetype_detect == kTrue ? "ON" : "(on)") : "OFF", + filetype_indent == kTrue ? (filetype_detect == kTrue ? "ON" : "(on)") : "OFF"); return; } |