diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-08-21 22:14:28 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-08-21 22:14:28 -0400 |
commit | 5b8255e251e121b814826d127a383bf3054cac80 (patch) | |
tree | 75c829be90f87de7cf90d7b529ff2893f753ceb1 | |
parent | b8e6f04e6952a5fb3179a6b243e0506bf979532a (diff) | |
download | rneovim-5b8255e251e121b814826d127a383bf3054cac80.tar.gz rneovim-5b8255e251e121b814826d127a383bf3054cac80.tar.bz2 rneovim-5b8255e251e121b814826d127a383bf3054cac80.zip |
NVIM v0.1.5v0.1.5
Features:
c7d84c5550a1 PR #4980 Full `:ruby` support!
c74ce334f2f7 PR #4624 timers: timer_start(), timer_stop()
b8e6f04e6952 PR #5205 `:CheckHealth` command
47a15d025617 PR #4865 file: Add buffered reading and writing
*Much* faster shada file reading (important for startup time).
71b3e20d0fba PR #4723 jobstart() learned 'rpc'
jobs and RPC channel IDs share the same "namespace".
jobstart() can starts RPC channels, which allows scripts to handle
'stderr' on a RPC channel, like a typical non-RPC job.
jobpid()/jobstop() work on RPC "jobs".
Deprecates rpcstart().
4dc4efc36fad PR #4449 man.vim rewrite
`:Man` command is enabled by default.
New features: completion, window handling, better parsing, and more.
8a4e5b4bc237 PR #4697 capture() function (renamed to execute())
Supports nesting, including nested :redir.
ae6db26b0956 PR #5050 'rplugin manifest: default to XDG dir'
a1682281f427 PR #5214 Restore ":browse oldfiles".
1f7304b84681 Better handling of mouse-clicks on concealed chars.
5ea4d58a1b1d PR #5026 terminal: Ensure b:term_title always has a value
c00231078790 tui: Assume 256 colors in most cases.
a2ecbc2cc093 PR #4929 Always resize the :terminal
a59330d6fc99 PR #4925 api_info()
a160590e4034 PR #4813 allow setting cwd in jobstart(), termopen()
74f64601817a PR #4633: support "special" highlight (undercurl)
5a5ef1c2227f PR #3450 mouse: Implement horizontal scroll.
Windows support:
All PRs now build on Appveyor targeting win32 and win64!
Numerous fixes!
Fixes:
e9061117a5b8 PR #4646 Prevent data loss for process output streams
7fa1baf44e78 PR #4798 'process.c: Fix block in teardown'
c10fe010f165 Prevent endless loop in printdigraph(). (#5215)
add41dca98b7 PR #5192 timers: Avoid crash after processing events
006f9c0c9c96 PR #5195 Set the default value for 'packpath'
6da7d6890cc6 PR #5025 Restore double click
d622e9c41635 readfile(): Less-disruptive readonly check.
Fixes an issue where nvim unnecessarily "touched" open files.
fe6ec757257d PR #4964 Handle very long $XDG_DATA_DIRS.
895f712df8af option: Do not expand options in XDG vars.
1d8a07615714 server_init: Handle server_address_new() failure.
be531aba777a PR #5042 Fix v:register for clipboard=unnamed,unnamedplus
204f557a11e2 PR #4984 'Trigger TabNewEntered with <CTRL-W>T'
1e93e24f5e6e PR #4851 synIDattr(): Return RRGGBB value for `fg#`.
Changes:
acc5d08b371c PR #4690 'termguicolors' option enables "true color".
NVIM_TUI_ENABLE_TRUE_COLOR is now ignored.
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3877699af9..4767d16762 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 5) -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) |