aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/change.c
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2019-06-10 16:26:11 +0200
committerDaniel Hahler <git@thequod.de>2019-08-07 14:21:23 +0200
commit0e3b9ea74d0611567b519e4e4af1fc427f8dca4d (patch)
tree501d723b8a3974a20d679dcc047183ae9925130c /src/nvim/change.c
parentaa6aa732e9dd14c2a8804d4c20658112a23491b2 (diff)
downloadrneovim-0e3b9ea74d0611567b519e4e4af1fc427f8dca4d.tar.gz
rneovim-0e3b9ea74d0611567b519e4e4af1fc427f8dca4d.tar.bz2
rneovim-0e3b9ea74d0611567b519e4e4af1fc427f8dca4d.zip
includes
Diffstat (limited to 'src/nvim/change.c')
-rw-r--r--src/nvim/change.c29
1 files changed, 27 insertions, 2 deletions
diff --git a/src/nvim/change.c b/src/nvim/change.c
index 3a216fec02..340471836d 100644
--- a/src/nvim/change.c
+++ b/src/nvim/change.c
@@ -3,7 +3,33 @@
/// change.c: functions related to changing text
-#include "nvim/vim.h"
+#include "nvim/assert.h"
+#include "nvim/buffer.h"
+#include "nvim/buffer_updates.h"
+#include "nvim/change.h"
+#include "nvim/charset.h"
+#include "nvim/cursor.h"
+#include "nvim/diff.h"
+#include "nvim/edit.h"
+#include "nvim/eval.h"
+#include "nvim/fileio.h"
+#include "nvim/fold.h"
+#include "nvim/indent.h"
+#include "nvim/indent_c.h"
+#include "nvim/mark.h"
+#include "nvim/memline.h"
+#include "nvim/misc1.h"
+#include "nvim/move.h"
+#include "nvim/option.h"
+#include "nvim/screen.h"
+#include "nvim/search.h"
+#include "nvim/state.h"
+#include "nvim/ui.h"
+#include "nvim/undo.h"
+
+#ifdef INCLUDE_GENERATED_DECLARATIONS
+# include "change.c.generated.h"
+#endif
/// If the file is readonly, give a warning message with the first change.
/// Don't do this for autocommands.
@@ -510,7 +536,6 @@ void ins_char(int c)
if (buf[0] == 0) {
buf[0] = '\n';
}
-
ins_char_bytes(buf, n);
}