diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-07-31 08:14:18 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-07-31 08:14:18 -0300 |
commit | 280d0ea5d36576e2fbd1bb18cc368b3f6ed5a9bc (patch) | |
tree | edee009bbd0ec54e81c800681dca7e95254cbb85 | |
parent | 9df1eb27f452603c910bd204eaa7435774091429 (diff) | |
parent | 718beb26138caf43b405806ded2c45be805f21c8 (diff) | |
download | rneovim-280d0ea5d36576e2fbd1bb18cc368b3f6ed5a9bc.tar.gz rneovim-280d0ea5d36576e2fbd1bb18cc368b3f6ed5a9bc.tar.bz2 rneovim-280d0ea5d36576e2fbd1bb18cc368b3f6ed5a9bc.zip |
Merge pull request #1005 '[RFC] Change vimdir path from vim to nvim'
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | config/pathdef.c.in | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c6c2742737..0f8978d74f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -171,6 +171,8 @@ if(BUSTED_PRG) DEPENDS nvim-test unittest-headers) endif() +install(DIRECTORY runtime DESTINATION share/nvim/) + # Unfortunately, the below does not work under Ninja. Ninja doesn't use a # pseudo-tty when launching processes, because it can put many jobs in parallel # and eat-up all the available pseudo-ttys. Unfortunately, that doesn't work diff --git a/config/pathdef.c.in b/config/pathdef.c.in index b7b4a980d6..7977daa065 100644 --- a/config/pathdef.c.in +++ b/config/pathdef.c.in @@ -1,5 +1,5 @@ #include "${PROJECT_SOURCE_DIR}/src/nvim/vim.h" -char_u *default_vim_dir = (char_u *)"${CMAKE_INSTALL_PREFIX}/share/vim"; +char_u *default_vim_dir = (char_u *)"${CMAKE_INSTALL_PREFIX}/share/nvim"; char_u *default_vimruntime_dir = (char_u *)""; char_u *all_cflags = (char_u *)"${COMPILER_FLAGS}"; char_u *all_lflags = (char_u *)"${LINKER_FLAGS}"; |