Patch 8.0.0142

2017-01-02 Fir de Conversatie Bram Moolenaar
Patch 8.0.0142 Problem:Normal colors are wrong with 'termguicolors'. Solution: Initialize to INVALCOLOR instead of zero. (Ben Jackson, closes #1344) Files: src/syntax.c *** ../vim-8.0.0141/src/syntax.c2016-08-29 22:42:20.0 +0200 --- src/syntax.c2017

Re: MSVC 2015: GvimExt doesn't take SDK_INCLUDE_DIR

2017-01-02 Fir de Conversatie tux.
My fault, sorry. Ignore my previous e-mail :) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed t

Patch 8.0.0141

2017-01-02 Fir de Conversatie Bram Moolenaar
Patch 8.0.0141 (after 8.0.0137) Problem:Nested function test fails on AppVeyor. Solution: Disable the test on Windows for now. Files: src/testdir/test_nested_function.vim *** ../vim-8.0.0140/src/testdir/test_nested_function.vim2017-01-02 15:26:24.166610927 +0100 --- src/testd

Patch 8.0.0140

2017-01-02 Fir de Conversatie Bram Moolenaar
Patch 8.0.0140 Problem:Pasting inserted text in Visual mode does not work properly. (Matthew Malcomson) Solution: Stop Visual mode before stuffing the inserted text. (Christian Brabandt, from neovim #5709) Files: src/ops.c, src/testdir/test_visual.vim *** ../vi

Patch 8.0.0139

2017-01-02 Fir de Conversatie Bram Moolenaar
Patch 8.0.0139 (after 8.0.0135) Problem:Warning for unused argument. Solution: Add UNUSED. Files: src/ex_docmd.c *** ../vim-8.0.0138/src/ex_docmd.c 2017-01-02 16:16:35.865660797 +0100 --- src/ex_docmd.c 2017-01-02 16:51:14.171045011 +0100 *** *** 4370,4376

Re: [patch] Fix document related command-line window

2017-01-02 Fir de Conversatie Bram Moolenaar
Shuta Toda wrote: > In the current document, it is written that executing ":close" in the > command-line window will behave similarly to "CTRL-C", but in reality > it behaves like ":quit". Because it has been changed in the following > topic. > > https://groups.google.com/d/msg/vim_dev/_fjJaLEuX

Re: [patch] neovim patches

2017-01-02 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > Here is another one, from neovim #5709 including a test Thanks! -- If Apple would build a car... ... it would be powered by the sun, be reliable, five times as fast and twice as easy to drive; but would only run on five percent of the roads. /// Bram Moolenaar --

[patch] Get the position of the first non-white character in the current line getpos('^'), col('^')

2017-01-02 Fir de Conversatie itchyny
Hi list, this is a small patch to grab the column number of the first non-white character in the current line. I wrote because found in the todo list. https://gist.github.com/itchyny/22e9871b15eec445ddb8c3a7451222af Regards, Ken Hamada (aka itchyny on GitHub) -- -- You received this message fr

Patch 8.0.0138

2017-01-02 Fir de Conversatie Bram Moolenaar
Patch 8.0.0138 (after 8.0.0137) Problem:Small build fails. Solution: Add #ifdef. Files: src/ex_docmd.c *** ../vim-8.0.0137/src/ex_docmd.c 2017-01-02 15:26:24.166610927 +0100 --- src/ex_docmd.c 2017-01-02 16:15:08.274273743 +0100 *** *** 789,795 /* It's

Patch 8.0.0137

2017-01-02 Fir de Conversatie Bram Moolenaar
Patch 8.0.0137 Problem:When 'maxfuncdepth' is set above 200 the nesting is limited to 200. (Brett Stahlman) Solution: Allow for Ex command recursion depending on 'maxfuncdepth'. Files: src/ex_docmd.c, src/testdir/test_nested_function.vim *** ../vim-8.0.0136/src/ex_docmd.c

Patch 8.0.0136

2017-01-02 Fir de Conversatie Bram Moolenaar
Patch 8.0.0136 Problem:When using indent folding and changing indent the wrong fold is opened. (Jonathan Fudger) Solution: Open the fold under the cursor a bit later. (Christian Brabandt) Files: src/ops.c, src/testdir/test_fold.vim *** ../vim-8.0.0135/src/ops.c 2016-09-0

Patch 8.0.0135

2017-01-02 Fir de Conversatie Bram Moolenaar
Patch 8.0.0135 Problem:An address relative to the current line, ":.,+3y", does not work properly on a closed fold. (Efraim Yawitz) Solution: Correct for including the closed fold. (Christian Brabandt) Files: src/ex_docmd.c, src/testdir/test_fold.vim, src/testdir/