aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/cursor_shape.c
diff options
context:
space:
mode:
authorEliseo Martínez <eliseomarmol@gmail.com>2014-05-12 11:59:22 +0200
committerEliseo Martínez <eliseomarmol@gmail.com>2014-05-15 20:46:01 +0200
commit409cc138f2de121288de3ffb930354b94af5edcd (patch)
tree31b10a63931ce99eb97dda40b286defc3b140606 /src/nvim/cursor_shape.c
parente731a5edf879cd0b5eb2a2035f78e2b44fbe75f5 (diff)
downloadrneovim-409cc138f2de121288de3ffb930354b94af5edcd.tar.gz
rneovim-409cc138f2de121288de3ffb930354b94af5edcd.tar.bz2
rneovim-409cc138f2de121288de3ffb930354b94af5edcd.zip
Introduce nvim namespace: Fix project-local includes.
Prepend 'nvim/' in all project-local (non-system) includes.
Diffstat (limited to 'src/nvim/cursor_shape.c')
-rw-r--r--src/nvim/cursor_shape.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/nvim/cursor_shape.c b/src/nvim/cursor_shape.c
index 19db088817..c8c42cfbac 100644
--- a/src/nvim/cursor_shape.c
+++ b/src/nvim/cursor_shape.c
@@ -1,9 +1,9 @@
-#include "vim.h"
-#include "cursor_shape.h"
-#include "misc2.h"
-#include "ex_getln.h"
-#include "charset.h"
-#include "syntax.h"
+#include "nvim/vim.h"
+#include "nvim/cursor_shape.h"
+#include "nvim/misc2.h"
+#include "nvim/ex_getln.h"
+#include "nvim/charset.h"
+#include "nvim/syntax.h"
/*
* Handling of cursor and mouse pointer shapes in various modes.