Skip to content

Commit 0bc2f84

Browse files
committed
Merge remote-tracking branch 'origin/develop'
2 parents ef53257 + f4a2704 commit 0bc2f84

File tree

8 files changed

+36
-16
lines changed

8 files changed

+36
-16
lines changed

VERSION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VIM_VER = 8.2.0029
2-
PATCHSET_VER = 20191222
1+
VIM_VER = 8.2.0087
2+
PATCHSET_VER = 20200106
33

44
VIM_VER_SHORT = 82
55

build/msvc/vim.mak

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ PERL = D:\Perl\strawberry-perl-5.28.1.1-32bit\perl
2828

2929
# Python settings
3030
!if !defined(DISABLE_IF) && !defined(DISABLE_PYTHON)
31-
DYNAMIC_PYTHON=yes
32-
PYTHON_VER=27
31+
#DYNAMIC_PYTHON=yes
32+
#PYTHON_VER=27
3333
DYNAMIC_PYTHON3=yes
3434
PYTHON3_VER=37
3535
!if "$(PROCESSOR_ARCHITECTURE)" == "AMD64"
36-
PYTHON = D:\Python\Python27
36+
#PYTHON = D:\Python\Python27
3737
PYTHON3 = D:\Python\Python37
3838
!else
39-
PYTHON = D:\Python\Python27-x86
39+
#PYTHON = D:\Python\Python27-x86
4040
PYTHON3 = D:\Python\Python37-32
4141
!endif
4242
!endif

contrib/lang-ja

kaoriya/doc/CHANGES.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 2020/01/06 の変更点
2+
3+
* ベースコードを8.2.0087に更新しました
4+
* 外部言語インターフェースの変更
5+
* Python2.xのサポートを終了しました
6+
* バグ修正
7+
* .vimrcでguifontを設定できなかった (#27)
8+
* .vimrcでtransparencyを設定できなかった (#27)
9+
* contrib 更新
10+
* lang-ja (2019-12-27 0828d89)
11+
* vimdoc-ja (2020-01-05 b0394e06)
12+
* 既知の問題
13+
* いくつかのテストが失敗しています
14+
115
## 2019/12/22 の変更点
216

317
* ベースコードを8.2.0029に更新しました

kaoriya/vim/gvimrc

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ scriptencoding utf-8
44
" An example for a Japanese version gvimrc file.
55
" 日本語版のデフォルトGUI設定ファイル(gvimrc) - Vim 8.1
66
"
7-
" Last Change: 18-May-2018.
7+
" Last Change: 26-Dec-2019.
88
" Maintainer: MURAOKA Taro <[email protected]>
99
"
1010
" 解説:
@@ -73,19 +73,25 @@ highlight Terminal guifg=lightgrey guibg=grey20
7373
"
7474
if has('win32')
7575
" Windows用
76-
set guifont=MS_Gothic:h12:cSHIFTJIS
77-
"set guifont=MS_Mincho:h12:cSHIFTJIS
76+
if &guifont == ''
77+
set guifont=MS_Gothic:h12:cSHIFTJIS
78+
"set guifont=MS_Mincho:h12:cSHIFTJIS
79+
endif
7880
" 行間隔の設定
7981
set linespace=1
8082
" 一部のUCS文字の幅を自動計測して決める
8183
if has('kaoriya')
8284
set ambiwidth=auto
8385
endif
8486
elseif has('mac')
85-
set guifont=Osaka-等幅:h14
87+
if &guifont == ''
88+
set guifont=Osaka-等幅:h14
89+
endif
8690
elseif has('xfontset')
87-
" UNIX用 (xfontsetを使用)
88-
set guifontset=a14,r14,k14
91+
if &guifontset == ''
92+
" UNIX用 (xfontsetを使用)
93+
set guifontset=a14,r14,k14
94+
endif
8995
endif
9096

9197
"---------------------------------------------------------------------------

patches

vim

Submodule vim updated 139 files

0 commit comments

Comments
 (0)