summaryrefslogtreecommitdiffstats
path: root/src/ex_getln.c
AgeCommit message (Collapse)Author
2017-02-26patch 8.0.0374: invalid memory access when using :sc in Ex modev8.0.0374Bram Moolenaar
Problem: Invalid memory access when using :sc in Ex mode. (Dominique Pelle) Solution: Avoid the column being negative. Also fix a hang in Ex mode.
2017-02-23patch 8.0.0360: sometimes VimL is used instead of "Vim script"v8.0.0360Bram Moolenaar
Problem: Sometimes VimL is used, which is confusing. Solution: Consistently use "Vim script". (Hirohito Higashi)
2017-02-09patch 8.0.0320: warning for unused variable with small buildv8.0.0320Bram Moolenaar
Problem: Warning for unused variable with small build. Solution: Change #ifdef to exclude FEAT_CMDWIN. (Kazunobu Kuriyama)
2017-01-24patch 8.0.0237: when 'wildoptions' is "tagfile" completion may not workv8.0.0237Bram Moolenaar
Problem: When setting wildoptions=tagfile the completion context is not set correctly. (desjardins) Solution: Check for EXPAND_TAGS_LISTFILES. (Christian Brabandt, closes #1399)
2017-01-24patch 8.0.0228: pasting in xterm on the command line has PasteStartv8.0.0228Bram Moolenaar
Problem: When pasting test in an xterm on the command line it is surrounded by <PasteStart> and <PasteEnd>. (Johannes Kaltenbach) Solution: Add missing changes.
2017-01-11patch 8.0.0172: command line window does not workv8.0.0172Bram Moolenaar
Problem: The command selected in the command line window is not executed. (Andrey Starodubtsev) Solution: Save and restore the command line at a lower level. (closes #1370)
2017-01-09patch 8.0.0161: can't build with small featuresv8.0.0161Bram Moolenaar
Problem: Build fails when using small features. Solution: Update #ifdef for using save_ccline. (Hirohito Higashi)
2017-01-08patch 8.0.0159: crash on startup when updating tablinev8.0.0159Bram Moolenaar
Problem: Using a NULL pointer when using feedkeys() to trigger drawing a tabline. Solution: Skip drawing a tabline if TabPageIdxs is NULL. (Dominique Pelle) Also fix recursing into getcmdline() from the cmd window.
2016-10-15patch 8.0.0034v8.0.0034Bram Moolenaar
Problem: No completion for ":messages". Solution: Complete "clear" argument. (Hirohito Higashi)
2016-09-09patch 7.4.2357v7.4.2357Bram Moolenaar
Problem: Attempt to read history entry while not initialized. Solution: Skip when the index is negative.
2016-09-05patch 7.4.2331v7.4.2331Bram Moolenaar
Problem: Using CTRL-X CTRL-V to complete a command line from Insert mode does not work after entering an expression on the command line. Solution: Don't use "ccline" when not actually using a command line. (test by Hirohito Higashi)
2016-09-03patch 7.4.2320v7.4.2320Bram Moolenaar
Problem: Redraw problem when using 'incsearch'. Solution: Save the current view when deleting characters. (Christian Brabandt) Fix that the '" mark is set in the wrong position. Don't change the search start when using BS.
2016-09-03patch 7.4.2318v7.4.2318Bram Moolenaar
Problem: When 'incsearch' is not set CTRL-T and CTRL-G are not inserted as before. Solution: Move #ifdef and don't use goto.
2016-09-03patch 7.4.2312v7.4.2312Bram Moolenaar
Problem: Crash when autocommand moves to another tab. (Dominique Pelle) Solution: When navigating to another window halfway the :edit command go back to the right window.
2016-08-29patch 7.4.2293v7.4.2293Bram Moolenaar
Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
2016-08-27patch 7.4.2268v7.4.2268Bram Moolenaar
Problem: Using CTRL-N and CTRL-P for incsearch shadows completion keys. Solution: Use CTRL-T and CTRL-G instead.
2016-08-26patch 7.4.2261v7.4.2261Bram Moolenaar
Problem: Build fails with small features. Solution: Move "else" inside the #ifdef.
2016-08-26patch 7.4.2259v7.4.2259Bram Moolenaar
Problem: With 'incsearch' can only see the next match. Solution: Make CTRL-N/CTRL-P move to the previous/next match. (Christian Brabandt)
2016-07-10patch 7.4.2024v7.4.2024Bram Moolenaar
Problem: More buf_valid() calls can be optimized. Solution: Use bufref_valid() instead.
2016-07-01patch 7.4.1976v7.4.1976Bram Moolenaar
Problem: Number variables are not 64 bits while they could be. Solution: Add the num64 feature. (Ken Takata)
2016-06-13patch 7.4.1933v7.4.1933Bram Moolenaar
Problem: Compiler warning about uninitialzed variable. (Yegappan) Solution: Give it a dummy value.
2016-06-12patch 7.4.1926v7.4.1926Bram Moolenaar
Problem: Possible crash with many history items. Solution: Avoid the index going past the last item.
2016-06-11patch 7.4.1919v7.4.1919Bram Moolenaar
Problem: Register contents is not merged when writing viminfo. Solution: Use timestamps for register contents.
2016-06-11patch 7.4.1918v7.4.1918Bram Moolenaar
Problem: Not enough testing for parsing viminfo lines. Solution: Add test with viminfo lines in bad syntax. Fix memory leak.
2016-06-09patch 7.4.1911v7.4.1911Bram Moolenaar
Problem: Recent history lines may be lost when exiting Vim. Solution: Merge history using the timestamp.
2016-06-06patch 7.4.1903v7.4.1903Bram Moolenaar
Problem: When writing viminfo merging current history with history in viminfo may drop recent history entries. Solution: Add new format for viminfo lines, use it for history entries. Use a timestamp for ordering the entries. Add test_settime(). Add the viminfo version. Does not do merging on timestamp yet.
2016-05-07patch 7.4.1820v7.4.1820Bram Moolenaar
Problem: Removing language from help tags too often. Solution: Only remove @en when not needed. (Hirohito Higashi)
2016-05-05patch 7.4.1818v7.4.1818Bram Moolenaar
Problem: Help completion adds @en to all matches except the first one. Solution: Remove "break", go over all items.
2016-03-28patch 7.4.1671v7.4.1671Bram Moolenaar
Problem: When help exists in multiple languages, adding @ab while "ab" is the default help language is unnecessary. Solution: Leave out "@ab" when not needed. (Ken Takata)
2016-03-22patch 7.4.1636v7.4.1636Bram Moolenaar
Problem: When 'F' is in 'shortmess' the prompt for the encryption key isn't displayed. (Toothpik) Solution: Reset msg_silent.
2016-03-19patch 7.4.1613v7.4.1613Bram Moolenaar
Problem: Still can't build with small features. Solution: Adjust #ifdefs.
2016-03-19patch 7.4.1612v7.4.1612Bram Moolenaar
Problem: Can't build with small features. Solution: Move code and #ifdefs.
2016-03-19patch 7.4.1611v7.4.1611Bram Moolenaar
Problem: The versplit feature makes the code uneccessary complicated. Solution: Remove FEAT_VERTSPLIT, always support vertical splits when FEAT_WINDOWS is defined.
2016-03-13patch 7.4.1554v7.4.1554Bram Moolenaar
Problem: Completion for :colorscheme does not use 'packpath'. Solution: Make it work, add a test. (Hirohito Higashi)
2016-03-05patch 7.4.1494v7.4.1494Bram Moolenaar
Problem: clr_history() does not work properly. Solution: Increment hisptr. Add a test. (Yegappan Lakshmanan)
2016-03-05patch 7.4.1492v7.4.1492Bram Moolenaar
Problem: No command line completion for ":packadd". Solution: Implement completion. (Hirohito Higashi)
2016-02-27patch 7.4.1433v7.4.1433Bram Moolenaar
Problem: The Sniff interface is no longer useful, the tool has not been available for may years. Solution: Delete the Sniff interface and related code.
2016-02-23patch 7.4.1399v7.4.1399Bram Moolenaar
Problem: The MS-DOS code does not build. Solution: Remove the old MS-DOS code.
2016-02-16patch 7.4.1334v7.4.1334Bram Moolenaar
Problem: Many compiler warnings with MingW. Solution: Add type casts. (Yasuhiro Matsumoto)
2016-01-31patch 7.4.1225v7.4.1225Bram Moolenaar
Problem: Still a few old style function declarations. Solution: Make them new style. (Hirohito Higashi)
2016-01-31patch 7.4.1222v7.4.1222Bram Moolenaar
Problem: ":normal" command and others missing in tiny build. Solution: Graduate FEAT_EX_EXTRA.
2016-01-30patch 7.4.1206v7.4.1206Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
2016-01-29patch 7.4.1200v7.4.1200Bram Moolenaar
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
2016-01-29patch 7.4.1197v7.4.1197Bram Moolenaar
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
2016-01-02patch 7.4.1027v7.4.1027Bram Moolenaar
Problem: No support for binary numbers. Solution: Add "bin" to nrformats. (Jason Schulz)
2015-12-31patch 7.4.1008v7.4.1008Bram Moolenaar
Problem: The OS/2 code pollutes the source while nobody uses it these days. Solution: Drop the support for OS/2.
2015-12-17patch 7.4.973v7.4.973Bram Moolenaar
Problem: When pasting on the command line line breaks result in literal <CR> characters. This makes pasting a long file name difficult. Solution: Skip the characters.
2015-11-21patch 7.4.933v7.4.933Bram Moolenaar
Problem: Crash when using longest completion match. Solution: Fix array index.
2015-11-19patch 7.4.926v7.4.926Bram Moolenaar
Problem: Completing the longest match doesn't work properly with multi-byte characters. Solution: When using multi-byte characters use another way to find the longest match. (Hirohito Higashi)
2015-08-11patch 7.4.822v7.4.822Bram Moolenaar
Problem: More problems reported by coverity. Solution: Avoid the warnings. (Christian Brabandt)