diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-04-07 21:49:37 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-04-07 22:04:21 -0400 |
commit | f4f80a238b2a0e4b24e569d741286fa277e2b641 (patch) | |
tree | 64a721de079f63f64a4544513265e985b5756202 | |
parent | 90e8bdc8985c19ea22c13020359b222c0bcb8ef0 (diff) | |
download | rneovim-f4f80a238b2a0e4b24e569d741286fa277e2b641.tar.gz rneovim-f4f80a238b2a0e4b24e569d741286fa277e2b641.tar.bz2 rneovim-f4f80a238b2a0e4b24e569d741286fa277e2b641.zip |
NVIM v0.1.3v0.1.3
Features:
f2ae5a9 Add TextYankPost and TextDeletePost autocmds
44b2cef bufhl: new mechanism for plugins to add highlights to a buffer
39c3842 Make set{qf,loc}list() take {title}
77a7ca4 'shortmess': Add "F" flag. #4446
99d4c8c keymap: Support <D-...> (super/command key).
Fixes:
14c9b30 terminal.c: temporary fix for incorrect paste handling
Notable changes:
50e129f defaults: Enable syntax and filetype plugins.
4e39eee upgrade libvterm (improves terminal reflow)
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 07557c6580..2cafb4024a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -60,7 +60,7 @@ set_property(CACHE CMAKE_BUILD_TYPE PROPERTY set(NVIM_VERSION_MAJOR 0) set(NVIM_VERSION_MINOR 1) set(NVIM_VERSION_PATCH 3) -set(NVIM_VERSION_PRERELEASE "-dev") # for package maintainers +set(NVIM_VERSION_PRERELEASE "") # for package maintainers file(TO_CMAKE_PATH ${CMAKE_CURRENT_LIST_DIR}/.git FORCED_GIT_DIR) include(GetGitRevisionDescription) |