From 6826f43b0061c2636f34b95c2f0a8f9cb0543851 Mon Sep 17 00:00:00 2001 From: Zhang Xiang Date: Thu, 28 Jan 2016 16:08:11 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=89=8B=E5=8A=A8?= =?UTF-8?q?=E4=BF=9D=E5=AD=98=E7=9A=84=E5=BF=AB=E6=8D=B7=E9=94=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.vimrc b/.vimrc index af679324..e216cf49 100644 --- a/.vimrc +++ b/.vimrc @@ -172,6 +172,7 @@ map :tabn map! zzi map! , map ggVG$"+y +map :w map gg=G map w imap , From 16a6eaa64cefa0896f06b55bc2dfadbe2d8c8742 Mon Sep 17 00:00:00 2001 From: acelove Date: Sat, 10 Dec 2016 17:19:20 +0800 Subject: [PATCH 2/4] Update .vimrc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 支持c++11新特性 --- .vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index af679324..e47e41d6 100644 --- a/.vimrc +++ b/.vimrc @@ -205,7 +205,7 @@ func! CompileRunGcc() exec "!g++ % -o %<" exec "!time ./%<" elseif &filetype == 'cpp' - exec "!g++ % -o %<" + exec "!g++ % -std=c++11 -o %<" exec "!time ./%<" elseif &filetype == 'java' exec "!javac %" @@ -228,7 +228,7 @@ endfunc map :call Rungdb() func! Rungdb() exec "w" - exec "!g++ % -g -o %<" + exec "!g++ % -std=c++11 -g -o %<" exec "!gdb ./%<" endfunc From 681553ab66aac07596ed1bdc09e6fdac6cf572e6 Mon Sep 17 00:00:00 2001 From: James Date: Mon, 27 Feb 2017 15:48:37 +0800 Subject: [PATCH 3/4] fix obsolete link MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 之前的链接失效了 --- update_log.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_log.md b/update_log.md index 888738e5..f75f4b7e 100644 --- a/update_log.md +++ b/update_log.md @@ -9,7 +9,7 @@ ### 2013年5月31日更新 - 增加400多种主题,可以在[colors](colors)目录中找到 -- 可以在[这里](http://vimcolorschemetest.googlecode.com/svn/html/index-c.html)预览 +- 可以在[这里](http://vimcolors.com/)预览 - 将`color ron`中的`ron`换成你喜欢的主题名字即可 - 重新打开vim生效 From cc26a20fe41d7dbea9c86d652b549c496598ade8 Mon Sep 17 00:00:00 2001 From: msn27149m Date: Tue, 20 Jun 2017 20:25:31 +0800 Subject: [PATCH 4/4] Update pyflakes.vim --- ftplugin/python/pyflakes.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftplugin/python/pyflakes.vim b/ftplugin/python/pyflakes.vim index 5a0b44ce..5cb1107e 100755 --- a/ftplugin/python/pyflakes.vim +++ b/ftplugin/python/pyflakes.vim @@ -267,7 +267,7 @@ EOF call setqflist(b:qf_list, 'r') else " one pyflakes quickfix window for all buffer - call setqflist(b:qf_list, '') + call setqflist(b:qf_list, ' ') let s:pyflakes_qf = s:GetQuickFixStackCount() endif endif