mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 21:48:35 +00:00
Introduce nvim namespace: Fix project-local includes.
Prepend 'nvim/' in all project-local (non-system) includes.
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "map.h"
|
||||
#include "map_defs.h"
|
||||
#include "vim.h"
|
||||
#include "memory.h"
|
||||
#include "nvim/map.h"
|
||||
#include "nvim/map_defs.h"
|
||||
#include "nvim/vim.h"
|
||||
#include "nvim/memory.h"
|
||||
|
||||
#include "lib/khash.h"
|
||||
#include "nvim/lib/khash.h"
|
||||
|
||||
typedef struct {
|
||||
void *ptr;
|
||||
|
Reference in New Issue
Block a user