diff options
author | Dundar Goc <gocdundar@gmail.com> | 2022-04-18 12:54:25 +0200 |
---|---|---|
committer | Dundar Goc <gocdundar@gmail.com> | 2022-04-29 13:52:12 +0200 |
commit | 995c1863685d7fa0cc2638b55efee55c4cb7ffc9 (patch) | |
tree | b5d650a10aba07e1dad76bac48dd46013ddfa2cf /src/nvim/ex_cmds.c | |
parent | 8c548c9e5416b4e25b51c018ceaa433756ee99b1 (diff) | |
download | rneovim-995c1863685d7fa0cc2638b55efee55c4cb7ffc9.tar.gz rneovim-995c1863685d7fa0cc2638b55efee55c4cb7ffc9.tar.bz2 rneovim-995c1863685d7fa0cc2638b55efee55c4cb7ffc9.zip |
refactor(uncrustify): disable formatting in problematic code sections
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index f059175c88..662a65d5d7 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -4317,6 +4317,8 @@ skip: lnum -= regmatch.startpos[0].lnum; } + // uncrustify:off + #define PUSH_PREVIEW_LINES() \ do { \ if (preview) { \ @@ -4336,6 +4338,8 @@ skip: } \ } while (0) + // uncrustify:on + // Push the match to preview_lines. PUSH_PREVIEW_LINES(); |