I am using Cygwin to compile Vim, but the configure script tells me that there is no termin开发者_如何学JAVAal library in the Cygwin environment. Which terminal library could be installed in Cypwin?
You can install ncurses
in Cygwin.
(You can also install vim
; I presume you have a reason to build it from source rather than using the provided version.)
I just installed vim 7.3 under Cygwin. Here's what I did (approximately):
- Download vim-7.3.tar.bz2
tar xf vim-7.3.tar.bz2
cd vim73
./configure --prefix=
/path/to/installation/directorymake
make install
精彩评论