summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.832v7.3.832Bram Moolenaar2013-02-261-1/+4
| | | | | Problem: Compiler warning. Solution: Add type cast. (Mike Williams)
* Update runtime files.Bram Moolenaar2013-02-208-42/+951
|
* updated for version 7.3.831v7.3.831Bram Moolenaar2013-02-2011-29/+198
| | | | | | Problem: Clumsy to handle the situation that a variable does not exist. Solution: Add default value to getbufvar() et al. (Shougo Matsushita, Hirohito Higashi)
* updated for version 7.3.830v7.3.830Bram Moolenaar2013-02-202-6/+8
| | | | | | Problem: :mksession confuses bytes, columns and characters when positioning the cursor. Solution: Use w_virtcol with "|" instead of w_cursor.col with "l".
* updated for version 7.3.829v7.3.829Bram Moolenaar2013-02-202-5/+5
| | | | | | | | | Problem: When compiled with the +rightleft feature 'showmatch' also shows a match for the opening paren. When 'revins' is set the screen may scroll. Solution: Only check the opening paren when the +rightleft feature was enabled. Do not show a match that is not visible. (partly by Christian Brabandt)
* updated for version 7.3.828v7.3.828Bram Moolenaar2013-02-203-0/+31
| | | | | Problem: Mappings are not aware of wildmenu mode. Solution: Add wildmenumode(). (Christian Brabandt)
* updated for version 7.3.827v7.3.827Bram Moolenaar2013-02-204-2/+10
| | | | | Problem: Python tests fail. Solution: Adjust the output for the stack trace.
* updated for version 7.3.826v7.3.826Bram Moolenaar2013-02-201-8/+74
| | | | | Problem: List of features in :version output is hard to read. Solution: Make columns. (Nazri Ramliy)
* updated for version 7.3.825v7.3.825Bram Moolenaar2013-02-203-0/+16
| | | | | Problem: With Python errors are not always clear. Solution: Print the stack trace, unless :silent is used. (ZyX)
* updated for version 7.3.824v7.3.824Bram Moolenaar2013-02-202-0/+5
| | | | | Problem: Can redefine builtin functions. (ZyX) Solution: Disallow adding a function to g:.
* updated for version 7.3.823v7.3.823Bram Moolenaar2013-02-202-2/+4
| | | | | Problem: Building with Cygwin: '-lsupc++' is not needed. Solution: Remove it. (Ken Takata)
* updated for version 7.3.822v7.3.822Bram Moolenaar2013-02-172-7/+29
| | | | | Problem: Crash when accessing freed buffer. Solution: Get 'textwidth' in caller of enter_buffer(). (Christian Brabandt)
* updated for version 7.3.821v7.3.821Bram Moolenaar2013-02-162-1/+15
| | | | | Problem: Build with OLE and Cygwin is broken. (Steve Hall) Solution: Select static or shared stdc library. (Ken Takta)
* updated for version 7.3.820v7.3.820Bram Moolenaar2013-02-144-9/+15
| | | | | | Problem: Build errors and warnings when building with small features and Lua, Perl or Ruby. Solution: Add #ifdefs and UNUSED.
* updated for version 7.3.819v7.3.819Bram Moolenaar2013-02-147-59/+69
| | | | | Problem: Compiling without +eval and with Python isn't working. Solution: Add the eval feature when building with Python.
* updated for version 7.3.818v7.3.818Bram Moolenaar2013-02-142-15/+17
| | | | | | Problem: When test 40 fails because of a bad build it may leave files behind that cause it to fail later. Solution: Let the file names start with "X".
* updated for version 7.3.817v7.3.817Bram Moolenaar2013-02-142-0/+3
| | | | | Problem: Test 89 fails with tiny and small features. Solution: Add sourcing small.vim.
* Add test files.Bram Moolenaar2013-02-132-0/+59
|
* updated for version 7.3.816v7.3.816Bram Moolenaar2013-02-1311-9/+43
| | | | | Problem: Can't compute a hash. Solution: Add the sha256() function. (Tyru, Hirohito Higashi)
* updated for version 7.3.815v7.3.815Bram Moolenaar2013-02-132-16/+36
| | | | | Problem: Building with Cygwin and Ruby doesn't work. Solution: Copy some things from the MingW build file. (Ken Takata)
* updated for version 7.3.814v7.3.814Bram Moolenaar2013-02-133-4/+57
| | | | | | | | Problem: Can't input multibyte characters on Win32 console if 'encoding' is different from current codepage. Solution: Use convert_input_safe() instead of convert_input(). Make string_convert_ext() return an error for incomplete input. (Ken Takata)
* updated for version 7.3.813v7.3.813Bram Moolenaar2013-02-132-0/+8
| | | | | | Problem: The CompleteDone event is not triggered when there are no pattern matches. (Jianjun Mao) Solution: Trigger the event. (Christian Brabandt)
* Update runtime files.Bram Moolenaar2013-02-1323-206/+275
| | | | Add missing test files.
* updated for version 7.3.812v7.3.812Bram Moolenaar2013-02-132-3/+13
| | | | | Problem: When 'indentexpr' moves the cursor "curswant" not restored. Solution: Restore "curswant". (Sung Pae)
* updated for version 7.3.811v7.3.811Bram Moolenaar2013-02-132-2/+3
| | | | | Problem: Useless termresponse parsing for SGR mouse. Solution: Skip the parsing. (Hayaki Saito)
* updated for version 7.3.810v7.3.810Bram Moolenaar2013-02-138-10/+23
| | | | | | Problem: 'relativenumber is reset unexpectedly. (François Ingelrest) Solution: After an option was reset also reset the global value. Add a test. (Christian Brabandt)
* updated for version 7.3.809v7.3.809Bram Moolenaar2013-02-132-1/+3
| | | | | Problem: The dosinst.c program has a buffer overflow. (Thomas Gwae) Solution: Ignore $VIMRUNTIME if it is too long.
* updated for version 7.3.808v7.3.808Bram Moolenaar2013-02-137-19/+123
| | | | | Problem: Python threads still do not work properly. Solution: Fix both Python 2 and 3. Add tests. (Ken Takata)
* updated for version 7.3.807v7.3.807Bram Moolenaar2013-02-132-0/+7
| | | | | | | Problem: Popup menu does not work properly with the preview window, folds and 'cursorcolumn'. Solution: Redraw the popup menu after redrawing windows. (Christian Brabandt)
* updated for version 7.3.806v7.3.806Bram Moolenaar2013-02-062-10/+12
| | | | | | Problem: Compiler warnings in Perl code when building with Visual studio 2012. (skeept) Solution: Add type casts. (Christian Brabandt, 2013 Jan 30)
* updated for version 7.3.805v7.3.805Bram Moolenaar2013-02-063-12/+18
| | | | | Problem: Lua version 5.2 is not detected properly on Arch Linux. Solution: Adjust autoconf. (lilydjwg)
* updated for version 7.3.804v7.3.804Bram Moolenaar2013-02-062-0/+4
| | | | | Problem: Compiler warning for tiny build. (Tony Mechelynck) Solution: Add #ifdefs around variable.
* updated for version 7.3.803v7.3.803Bram Moolenaar2013-02-064-2/+19
| | | | | | Problem: Substitute with confirmation and then "q" does not replace anything. (John McGowan) Solution: Do not break the loop, skip to the end.
* Updated runtime files.Bram Moolenaar2013-02-0617-35/+802
|
* updated for version 7.3.802v7.3.802Bram Moolenaar2013-02-062-0/+7
| | | | | | Problem: After setting 'isk' to a value ending in a comma appending to the option fails. Solution: Disallow a trailing comma for 'isk' and similar options.
* updated for version 7.3.801v7.3.801Bram Moolenaar2013-02-062-2/+5
| | | | | | Problem: ":window set nu?" displays the cursor line. (Nazri Ramliy) Solution: Do not update the cursor line when conceallevel is zero or the screen has scrolled. (partly by Christian Brabandt)
* updated for version 7.3.800v7.3.800Bram Moolenaar2013-02-062-0/+8
| | | | | Problem: The " mark is not adjusted when inserting lines. (Roland Eggner) Solution: Adjust the line number. (Christian Brabandt)
* updated for version 7.3.799v7.3.799Bram Moolenaar2013-02-062-0/+6
| | | | | | | Problem: The color column is not correct when entering a buffer. (Ben Fritz) Solution: Call check_colorcolumn() if 'textwidth' changed. (Christian Brabandt)
* updated for version 7.3.798v7.3.798Bram Moolenaar2013-01-313-2/+34
| | | | | Problem: MzScheme: circular list does not work correctly. Solution: Separate Mac-specific code from generic code. (Sergey Khorev)
* updated for version 7.3.797v7.3.797Bram Moolenaar2013-01-302-2/+4
| | | | | Problem: Compiler warning for size_t to int conversion. (Skeept) Solution: Add type casts.
* updated for version 7.3.796v7.3.796Bram Moolenaar2013-01-304-4/+9
| | | | | Problem: "/[^\n]" does match at a line break. Solution: Make it do the same as "/.". (Christian Brabandt)
* updated for version 7.3.795v7.3.795Bram Moolenaar2013-01-303-9/+21
| | | | | | Problem: MzScheme does not build with tiny features. Solution: Add #ifdefs. Also add UNUSED to avoid warnings. And change library ordering.
* updated for version 7.3.794v7.3.794Bram Moolenaar2013-01-302-4/+4
| | | | | Problem: Tiny build fails. (Tony Mechelynck) Solution: Adjust #ifdefs.
* updated for version 7.3.793v7.3.793Bram Moolenaar2013-01-303-0/+23
| | | | | Problem: New interactive :substutite behavior is not tested. Solution: Add tests. (Christian Brabandt)
* updated for version 7.3.792v7.3.792Bram Moolenaar2013-01-302-5/+43
| | | | | | Problem: ":substitute" works differently without confirmation. Solution: Do not change the text when asking for confirmation, only display it.
* updated for version 7.3.791v7.3.791Bram Moolenaar2013-01-3013-178/+489
| | | | | Problem: MzScheme interface doesn't work propely. Solution: Make it work better. (Sergey Khorev)
* Update runtime files.Bram Moolenaar2013-01-3017-586/+847
|
* updated for version 7.3.790v7.3.790Bram Moolenaar2013-01-302-0/+5
| | | | | Problem: After reloading a buffer the modelines are not processed. Solution: call do_modelines(). (Ken Takata)
* updated for version 7.3.789v7.3.789Bram Moolenaar2013-01-304-8/+20
| | | | | Problem: "\k" in regexp does not work in other window. Solution: Use the right buffer. (Yukihiro Nakadaira)
* updated for version 7.3.788v7.3.788Bram Moolenaar2013-01-302-0/+6
| | | | | Problem: When only using patches build fails on missing nl.po. Solution: Create an empty nl.po file.