summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2016-08-25patch 7.4.2253v7.4.2253Bram Moolenaar
Problem: Check for Windows 3.1 will always return false. (Christian Brabandt) Solution: Remove the dead code.
2016-08-25patch 7.4.2252v7.4.2252Bram Moolenaar
Problem: Compiler warnings for signed/unsigned in expression. Solution: Remove type cast. (Dominique Pelle)
2016-08-24patch 7.4.2251v7.4.2251Bram Moolenaar
Problem: In rare cases diffing 4 buffers is not enough. Solution: Raise the limit to 8. (closes #1000)
2016-08-24patch 7.4.2250v7.4.2250Bram Moolenaar
Problem: Some error message cannot be translated. Solution: Enclose them in _() and N_(). (Dominique Pelle)
2016-08-24patch 7.4.2249v7.4.2249Bram Moolenaar
Problem: Missing colon in error message. Solution: Add the colon. (Dominique Pelle)
2016-08-24patch 7.4.2248v7.4.2248Bram Moolenaar
Problem: When cancelling the :ptjump prompt a preview window is opened for a following command. Solution: Reset g_do_tagpreview. (Hirohito Higashi) Add a test. Avoid that the test runner gets stuck in trying to close a window.
2016-08-24patch 7.4.2247v7.4.2247Bram Moolenaar
Problem: Tiny build fails. (Tony Mechelynck) Solution: Remove #ifdef.
2016-08-24patch 7.4.2246v7.4.2246Bram Moolenaar
Problem: Oldfiles test fails. Solution: Include missing changes.
2016-08-24patch 7.4.2245v7.4.2245Bram Moolenaar
Problem: Filter test fails. Solution: Include missing changes.
2016-08-23patch 7.4.2244v7.4.2244Bram Moolenaar
Problem: Adding pattern to ":oldfiles" is not a generic solution. Solution: Add the ":filter /pat/ cmd" command modifier. Only works for some commands right now.
2016-08-22patch 7.4.2243v7.4.2243Bram Moolenaar
Problem: Warning for assigning negative value to unsigned. (Danek Duvall) Solution: Make cterm_normal_fg_gui_color and _bg_ guicolor_T, cast to long_u only when an unsigned is needed.
2016-08-22patch 7.4.2242v7.4.2242Bram Moolenaar
Problem: Timer test sometimes fails. Solution: Increase the maximum time for callback timer test.
2016-08-22patch 7.4.2241v7.4.2241Bram Moolenaar
Problem: Timer test sometimes fails. Solution: Increase the maximum time for repeating timer.
2016-08-22patch 7.4.2240v7.4.2240Bram Moolenaar
Problem: Tests using the sleep time can be flaky. Solution: Use reltime() if available. (Partly by Shane Harper)
2016-08-21patch 7.4.2239v7.4.2239Bram Moolenaar
Problem: Warning for missing declaration of skip_vimgrep_pat(). (John Marriott) Solution: Move it to another file.
2016-08-21patch 7.4.2238v7.4.2238Bram Moolenaar
Problem: With SGR mouse reporting (suckless terminal) the mouse release and scroll up/down is confused. Solution: Don't see a release as a scroll up/down. (Ralph Eastwood)
2016-08-21patch 7.4.2237v7.4.2237Bram Moolenaar
Problem: Can't use "." and "$" with ":tab". Solution: Support a range for ":tab". (Hirohito Higashi)
2016-08-21patch 7.4.2236v7.4.2236Bram Moolenaar
Problem: The 'langnoremap' option leads to double negatives. And it does not work for the last character of a mapping. Solution: Add 'langremap' with the opposite value. Keep 'langnoremap' for backwards compatibility. Make it work for the last character of a mapping. Make the test work.
2016-08-21patch 7.4.2235v7.4.2235Bram Moolenaar
Problem: submatch() does not check for a valid argument. Solution: Give an error if the argument is out of range. (Dominique Pelle)
2016-08-21patch 7.4.2234v7.4.2234Bram Moolenaar
Problem: Can't build with +eval but without +quickfix. (John Marriott) Solution: Move skip_vimgrep_pat() to separate #ifdef block.
2016-08-21patch 7.4.2233v7.4.2233Bram Moolenaar
Problem: Crash when using funcref() with invalid name. (Dominique Pelle) Solution: Check for NULL translated name.
2016-08-20patch 7.4.2232v7.4.2232Bram Moolenaar
Problem: The default ttimeoutlen is very long. Solution: Use "100". (Hirohito Higashi)
2016-08-20patch 7.4.2231v7.4.2231Bram Moolenaar
Problem: ":oldfiles" output is a very long list. Solution: Add a pattern argument. (Coot, closes #575)
2016-08-20patch 7.4.2230v7.4.2230Bram Moolenaar
Problem: There is no equivalent of 'smartcase' for a tag search. Solution: Add value "followscs" and "smart" to 'tagcase'. (Christian Brabandt, closes #712) Turn tagcase test into new style.
2016-08-20patch 7.4.2229v7.4.2229Bram Moolenaar
Problem: Startup test fails on Solaris. Solution: Recognize a character device. (Danek Duvall)
2016-08-18patch 7.4.2228v7.4.2228Bram Moolenaar
Problem: Test files have inconsistant modelines. Solution: Don't set 'tabstop' to 2, use 'sts' and 'sw'.
2016-08-18patch 7.4.2227v7.4.2227Bram Moolenaar
Problem: Tab page tests are old style. Solution: Change into new style tests. (Hirohito Higashi)
2016-08-18patch 7.4.2226v7.4.2226Bram Moolenaar
Problem: The field names used by getbufinfo(), gettabinfo() and getwininfo() are not consistent. Solution: Use bufnr, winnr and tabnr. (Yegappan Lakshmanan)
2016-08-17patch 7.4.2225v7.4.2225Bram Moolenaar
Problem: Crash when placing a sign in a deleted buffer. Solution: Check for missing buffer name. (Dominique Pelle). Add a test.
2016-08-17patch 7.4.2224v7.4.2224Bram Moolenaar
Problem: Compiler warnings with older compiler and 64 bit numbers. Solution: Add "LL" to large values. (Mike Williams)
2016-08-17patch 7.4.2223v7.4.2223Bram Moolenaar
Problem: Buffer overflow when using latin1 character with feedkeys(). Solution: Check for an illegal character. Add a test.
2016-08-16patch 7.4.2222v7.4.2222Bram Moolenaar
Problem: Sourcing a script where a character has 0x80 as a second byte does not work. (Filipe L B Correia) Solution: Turn 0x80 into K_SPECIAL KS_SPECIAL KE_FILLER. (Christian Brabandt, closes #728) Add a test case.
2016-08-16patch 7.4.2221v7.4.2221Bram Moolenaar
Problem: printf() does not support binary format. Solution: Add %b and %B. (Ozaki Kiichi)
2016-08-16patch 7.4.2220v7.4.2220Bram Moolenaar
Problem: printf() gives an error when the argument for %s is not a string. (Ozaki Kiichi) Solution: Behave like invoking string() on the argument. (Ken Takata)
2016-08-16patch 7.4.2219v7.4.2219Bram Moolenaar
Problem: Recursive call to substitute gets stuck in sandbox. (Nikolai Pavlov) Solution: Handle the recursive call. (Christian Brabandt, closes #950) Add a test.
2016-08-16patch 7.4.2218v7.4.2218Bram Moolenaar
Problem: Can't build with +timers when +digraph is not included. Solution: Change #ifdef for e_number_exp. (Damien)
2016-08-16patch 7.4.2217v7.4.2217Bram Moolenaar
Problem: When using matchaddpos() a character after the end of the line can be highlighted. Solution: Only highlight existing characters. (Hirohito Higashi)
2016-08-15patch 7.4.2216v7.4.2216Bram Moolenaar
Problem: Test fails without the +sign feature. Solution: Only check for signcolumn with the +sign feature.
2016-08-15patch 7.4.2215v7.4.2215Bram Moolenaar
Problem: It's not easy to find out if a window is a quickfix or location list window. Solution: Add "loclist" and "quickfix" entries to the dict returnec by getwininfo(). (Yegappan Lakshmanan)
2016-08-14patch 7.4.2214v7.4.2214Bram Moolenaar
Problem: A font that uses ligatures messes up the screen display. Solution: Put spaces between characters when building the glyph table. (based on a patch from Manuel Schiller)
2016-08-14patch 7.4.2213v7.4.2213Bram Moolenaar
Problem: Cannot highlight the "~" lines at the end of a window differently. Solution: Add the EndOfBuffer highlighting. (Marco Hinz, James McCoy)
2016-08-14patch 7.4.2212v7.4.2212Bram Moolenaar
Problem: Mark " is not set when closing a window in another tab. (Guraga) Solution: Check all tabs for the window to be valid. (based on patch by Hirohito Higashi, closes #974)
2016-08-14patch 7.4.2211v7.4.2211Bram Moolenaar
Problem: Mouse support is not automatically enabled with simple term. Solution: Recognize "st" and other names. (Manuel Schiller, closes #963)
2016-08-14patch 7.4.2210v7.4.2210Bram Moolenaar
Problem: On OSX configure mixes up a Python framework and the Unix layout. Solution: Make configure check properly. (Tim D. Smith, closes #980)
2016-08-14patch 7.4.2209v7.4.2209Bram Moolenaar
Problem: Cannot map <M-">. (Stephen Riehm) Solution: Solve the memory access problem in another way. (Dominique Pelle) Allow for using <M-\"> in a string.
2016-08-14patch 7.4.2208v7.4.2208Bram Moolenaar
Problem: Test for mappings is old style. Solution: Convert the test to new style.
2016-08-13patch 7.4.2207v7.4.2207Bram Moolenaar
Problem: The +xpm feature is not sorted properly in :version output. Solution: Move it up. (Tony Mechelynck)
2016-08-13patch 7.4.2206v7.4.2206Bram Moolenaar
Problem: Warning for unused function. Solution: Put the function inside #ifdef. (John Marriott)
2016-08-13patch 7.4.2205v7.4.2205Bram Moolenaar
Problem: 'wildignore' always applies to getcompletion(). Solution: Add an option to use 'wildignore' or not. (Yegappan Lakshmanan)
2016-08-12patch 7.4.2204v7.4.2204Bram Moolenaar
Problem: It is not easy to get information about buffers, windows and tabpages. Solution: Add getbufinfo(), getwininfo() and gettabinfo(). (Yegappan Lakshmanan)