Skip to content

Commit

Permalink
Windows下恢复显示特殊字符,目前只显示多余的空格
Browse files Browse the repository at this point in the history
  • Loading branch information
latel committed Aug 10, 2015
1 parent 9ce13b0 commit 3767675
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion _vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ autocmd! InsertLeave * set imdisable|set iminsert=0
autocmd! InsertEnter * set noimdisable|set iminsert=0
set shiftround "当你的缩进不成倍时,让 Vim 自动帮你把周围的缩进化零为整
set list "显示特殊符号
if !g:isWindows
if g:isWindows
set list listchars=trail:., "详细的定义显示哪些符号
elseif
set list listchars=eol:¬,tab:▸\ ,trail:., "详细的定义显示哪些符号
endif
set showmatch "打开此选项使得你在输入成对的括号时,Vim 会帮助你跳转并高亮一下匹配的括号
Expand Down

0 comments on commit 3767675

Please sign in to comment.