mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00

These are not needed after #35129 but making uncrustify still play nice with them was a bit tricky. Unfortunately `uncrustify --update-config-with-doc` breaks strings with backslashes. This issue has been reported upstream, and in the meanwhile auto-update on every single run has been disabled.
18 lines
541 B
C
18 lines
541 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "nvim/buffer_defs.h" // IWYU pragma: keep
|
|
#include "nvim/ex_cmds_defs.h" // IWYU pragma: keep
|
|
#include "nvim/macros_defs.h"
|
|
#include "nvim/pos_defs.h" // IWYU pragma: keep
|
|
|
|
// Value set from 'diffopt'.
|
|
EXTERN int diff_context INIT( = 6); ///< context for folds
|
|
EXTERN int diff_foldcolumn INIT( = 2); ///< 'foldcolumn' for diff mode
|
|
EXTERN bool diff_need_scrollbind INIT( = false);
|
|
|
|
EXTERN bool need_diff_redraw INIT( = false); ///< need to call diff_redraw()
|
|
|
|
#include "diff.h.generated.h"
|