Mercurial > vim
annotate src/Make_cyg.mak @ 16135:dc0801e374e0 v8.1.1072
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
commit https://github.com/vim/vim/commit/8ee4c01b8c79a29065c1af05e5d9c0721069765f
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Mar 29 18:08:18 2019 +0100
patch 8.1.1072: extending sign and foldcolumn below the text is confusing
Problem: Extending sign and foldcolumn below the text is confusing.
Solution: Let the sign and foldcolumn stop at the last text line, just like
the line number column. Also stop the command line window leader.
(Christian Brabandt, closes #3964)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 29 Mar 2019 18:15:05 +0100 |
parents | 626fb8e8bb8a |
children | b0e19f135e50 |
rev | line source |
---|---|
7 | 1 # |
6326 | 2 # Makefile for VIM on Win32, using MinGW cross compiler on Cygwin |
146 | 3 # |
4 # Also read INSTALLpc.txt! | |
7 | 5 # |
6 # This compiles Vim as a Windows application. If you want Vim to run as a | |
7 # Cygwin application use the Makefile (just like on Unix). | |
8 # | |
6326 | 9 # The old Make_cyg.mak (maintained by Dan Sharp et al.) was merged into |
10 # Make_cyg_ming.mak. Note: USEDLL option was removed. | |
11 # This file contains Cygwin specific settings. Common settings are contained | |
12 # in Make_cyg_ming.mak. | |
13 # | |
14 # Last updated by Ken Takata. | |
15 # Last Change: 2014 Oct 21 | |
7 | 16 |
4137 | 17 |
6326 | 18 # uncomment 'PERL' if you want a perl-enabled version |
19 #PERL=/cygdrive/c/perl | |
7 | 20 |
6326 | 21 # uncomment 'LUA' if you want a Lua-enabled version |
22 #LUA=/cygdrive/c/lua | |
7 | 23 |
6326 | 24 # uncomment 'MZSCHEME' if you want a MzScheme-enabled version |
25 #MZSCHEME=/cygdrive/d/plt | |
3959 | 26 |
6326 | 27 # uncomment 'PYTHON' if you want a python-enabled version |
28 #PYTHON=/cygdrive/c/python20 | |
7 | 29 |
6326 | 30 # uncomment 'PYTHON3' if you want a python3-enabled version |
31 #PYTHON3=/cygdrive/c/python31 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
32 |
6326 | 33 # uncomment 'TCL' if you want a Tcl-enabled version |
34 #TCL=/cygdrive/c/tcl | |
7 | 35 |
6326 | 36 # uncomment 'RUBY' if you want a Ruby-enabled version |
37 #RUBY=/cygdribe/c/ruby | |
6110 | 38 |
7 | 39 |
6326 | 40 # Use MinGW(-w64) cross compiler. |
41 # There are three MinGW packages in Cygwin: | |
42 # 32-bit: mingw-gcc-g++ and mingw64-i686-gcc-g++ | |
43 # 64-bit: mingw64-x86_64-gcc-g++ | |
44 # You may also need to set 'ARCH' in Make_cyg_ming.mak. | |
45 CROSS_COMPILE = i686-pc-mingw32- | |
46 #CROSS_COMPILE = i686-w64-mingw32- | |
47 #CROSS_COMPILE = x86_64-w64-mingw32- | |
7 | 48 |
49 | |
6326 | 50 # Do not change this. |
51 UNDER_CYGWIN = yes | |
52 include Make_cyg_ming.mak | |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
6326
diff
changeset
|
53 |
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
6326
diff
changeset
|
54 # vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0: |