Ncurses 6.0 install on OS X

The mouse doesn't work properly in Kakoune on OSX without installing the latest version of ncurses. This shows the user how to do that.
This commit is contained in:
Robert J. Ennis 2016-03-10 15:05:03 +01:00
parent fcd3437fac
commit 5180c06906

View File

@ -119,6 +119,15 @@ its source directory, type *make install*, you can specify the `PREFIX` and
[TIP]
.Homebrew (OSX)
====
NOTE: The ncurses library that comes with OSX is not new enough to support some of the mouse based features of Kakoune
(only tested on OSX 10.11.3, where the packaged ncurses library is version 5.4, whereas the latest version is 6.0).
Currently, a fresh Kakoune install requires that you install ncurses 6.0. You can install ncurses 6.0 via Homebrew,
-----------------------------------------------------------------------------------------------
brew tap homebrew/dupes
brew install homebrew/dupes/ncurses
-----------------------------------------------------------------------------------------------
Then, to install,
-----------------------------------------------------------------------------------------------
brew install --HEAD https://raw.githubusercontent.com/mawww/kakoune/master/contrib/kakoune.rb
-----------------------------------------------------------------------------------------------