summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-12-17updated for version 7.4.553Bram Moolenaar
Problem: Various small issues. Solution: Fix those issues.
2014-12-14updated for version 7.4.552Bram Moolenaar
Problem: Langmap applies to Insert mode expression mappings. Solution: Check for Insert mode. (Daniel Hahler)
2014-12-13updated for version 7.4.551Bram Moolenaar
Problem: "ygn" may yank too much. (Fritzophrenic) Issue 295. Solution: Check the width of the next match. (Christian Brabandt)
2014-12-13updated for version 7.4.550Bram Moolenaar
Problem: curs_rows() function is always called with the second argument false. Solution: Remove the argument. (Christian Brabandt) validate_botline_win() can then also be removed.
2014-12-13Add new files for 7.4.549.Bram Moolenaar
2014-12-13updated for version 7.4.549Bram Moolenaar
Problem: Function name not recognized correctly when inside a function. Solution: Don't check for an alpha character.
2014-12-13updated for version 7.4.548Bram Moolenaar
Problem: Function name not recognized correctly when inside a function. Solution: Don't check for an alpha character.
2014-12-13updated for version 7.4.547Bram Moolenaar
Problem: Using "vit" does not select a multi-byte character at the end correctly. Solution: Advance the cursor over the multi-byte character. (Christian Brabandt)
2014-12-13updated for version 7.4.546Bram Moolenaar
Problem: Repeated use of vim_snprintf() with a number. Solution: Move these vim_snprintf() calls into a function.
2014-12-13updated for version 7.4.545Bram Moolenaar
Problem: Highlighting for multi-line matches is not correct. Solution: Stop highlight at the end of the match. (Hirohito Higashi)
2014-12-13updated for version 7.4.544Bram Moolenaar
Problem: Warnings for unused arguments when compiling with a combination of features. Solution: Add "UNUSED".
2014-12-13updated for version 7.4.543Bram Moolenaar
Problem: Since patch 7.4.232 "1,3s/\n//" joins two lines instead of three. (Eliseo Martínez) Issue 287 Solution: Correct the line count. (Christian Brabandt) Also set the last used search pattern.
2014-12-08updated for version 7.4.542Bram Moolenaar
Problem: Using a range for window and buffer commands has a few problems. Cannot specify the type of range for a user command. Solution: Add the -addr argument for user commands. Fix problems. (Marcin Szamotulski)
2014-12-07updated for version 7.4.541Bram Moolenaar
Problem: Crash when doing a range assign. Solution: Check for NULL poiter. (Yukihiro Nakadaira)
2014-11-30updated for version 7.4.540Bram Moolenaar
Problem: Cannot build with tiny and small features. (Taro Muraoka) Solution: Add #ifdef around CMD_USER.
2014-11-30updated for version 7.4.539Bram Moolenaar
Problem: Crash when computing buffer count. Problem with range for user commands. Line range wrong in Visual area. Solution: Avoid segfault in compute_buffer_local_count(). Check for CMD_USER when checking type of range. (Marcin Szamotulski)
2014-11-30updated for version 7.4.538Bram Moolenaar
Problem: Tests fail with small features plus Python. Solution: Disallow weird combination of options. Do not set "fdm" when folding is disabled.
2014-11-27updated for version 7.4.537Bram Moolenaar
Problem: Value of v:hlsearch reflects an internal variable. Solution: Make the value reflect whether search highlighting is actually displayed. (Christian Brabandt)
2014-11-27updated for version 7.4.536Bram Moolenaar
Problem: Test 63 fails when using a black&white terminal. Solution: Add attributes for a non-color terminal. (Christian Brabandt)
2014-11-27updated for version 7.4.535Bram Moolenaar
Problem: Can't build with tiny features. Solution: Add #ifdefs and skip a test.
2014-11-27Add files added by patch 7.4.530 to the repository.Bram Moolenaar
2014-11-27updated for version 7.4.534Bram Moolenaar
Problem: Warnings when compiling if_ruby.c. Solution: Avoid the warnings. (Ken Takata)
2014-11-27updated for version 7.4.533Bram Moolenaar
Problem: ":hardcopy" leaks memory in case of errors. Solution: Free memory in all code paths. (Christian Brabandt)
2014-11-27updated for version 7.4.532Bram Moolenaar
Problem: When using 'incsearch' "2/pattern/e" highlights the first match. Solution: Move the code to set extra_col inside the loop for count. (Ozaki Kiichi)
2014-11-27updated for version 7.4.531Bram Moolenaar
Problem: Comments about parsing an Ex command are wrong. Solution: Correct the steop numbers.
2014-11-27updated for version 7.4.530Bram Moolenaar
Problem: Many commands take a count or range that is not using line numbers. Solution: For each command specify what kind of count it uses. For windows, buffers and arguments have "$" and "." have a relevant meaning. (Marcin Szamotulski)
2014-11-27updated for version 7.4.529Bram Moolenaar
Problem: No test for what 7.4.517 fixes. Solution: Adjust the tests for breakindent. (Christian Brabandt)
2014-11-27updated for version 7.4.528Bram Moolenaar
Problem: Crash when using matchadd() (Yasuhiro Matsumoto) Solution: Copy the match regprog.
2014-11-23updated for version 7.4.527Bram Moolenaar
Problem: Still confusing regexp failure and NFA_TOO_EXPENSIVE. Solution: NFA changes equivalent of 7.4.526.
2014-11-20updated for version 7.4.526Bram Moolenaar
Problem: matchstr() fails on long text. Daniel Hahler) Solution: Return NFA_TOO_EXPENSIVE from regexec_nl(). (Christian Brabandt)
2014-11-19updated for version 7.4.525Bram Moolenaar
Problem: map() leaks memory when there is an error in the expression. Solution: Call clear_tv(). (Christian Brabandt)
2014-11-19updated for version 7.4.524Bram Moolenaar
Problem: When using ":ownsyntax" spell checking is messed up. (Issue 78) Solution: Use the window-local option values. (Christian Brabandt)
2014-11-19updated for version 7.4.523Bram Moolenaar
Problem: When the X11 server is stopped and restarted, while Vim is kept in the background, copy/paste no longer works. (Issue 203) Solution: Setup the clipboard again. (Christian Brabandt)
2014-11-19updated for version 7.4.522Bram Moolenaar
Problem: Specifying wrong buffer size for GetLongPathName(). Solution: Use the actual size. (Ken Takata)
2014-11-19updated for version 7.4.521Bram Moolenaar
Problem: When using "vep" a mark is moved to the next line. (Maxi Padulo, Issue 283) Solution: Decrement the line number. (Christian Brabandt)
2014-11-19updated for version 7.4.520Bram Moolenaar
Problem: Sun PCK locale is not recognzed. Solution: Add PCK in the table. (Keiichi Oono)
2014-11-19updated for version 7.4.519Bram Moolenaar
Problem: Crash when using syntax highlighting. Solution: When regprog is freed and replaced, store the result.
2014-11-19updated for version 7.4.518Bram Moolenaar
Problem: Using status line height in width computations. Solution: Use one instead. (Hirohito Higashi)
2014-11-19updated for version 7.4.517Bram Moolenaar
Problem: With a wrapping line the cursor may not end up in the right place. (Nazri Ramliy) Solution: Adjust n_extra for a Tab that wraps. (Christian Brabandt)
2014-11-13Update translations.Bram Moolenaar
2014-11-12updated for version 7.4.516Bram Moolenaar
Problem: Completing a function name containing a # does not work. Issue 253. Solution: Recognize the # character. (Christian Brabandt)
2014-11-12updated for version 7.4.515Bram Moolenaar
Problem: In a help buffer the global 'foldmethod' is used. (Paul Marshall) Solution: Reset 'foldmethod' when starting to edit a help file. Move the code to a separate function.
2014-11-12updated for version 7.4.514Bram Moolenaar
Problem: Memory access error. (Dominique Pelle) Solution: Update tpos. (Christian Brabandt)
2014-11-12updated for version 7.4.513Bram Moolenaar
Problem: Crash because reference count is wrong for list returned by getreg(). Solution: Increment the reference count. (Kimmy Lindvall)
2014-11-12updated for version 7.4.512Bram Moolenaar
Problem: Cannot generate prototypes for Win32 files and VMS. Solution: Add typedefs and #ifdef
2014-11-12updated for version 7.4.511Bram Moolenaar
Problem: Generating proto for if_ruby.c uses type not defined elsewhere. Solution: Do not generate a prototype for rb_gc_writebarrier_unprotect_promoted()
2014-11-12updated for version 7.4.510Bram Moolenaar
Problem: "-fwrapv" argument breaks use of cproto. Solution: Remove the alphabetic arguments in a drastic way.
2014-11-12updated for version 7.4.509Bram Moolenaar
Problem: Users are not aware their encryption is weak. Solution: Give a warning when prompting for the key.
2014-11-12updated for version 7.4.508Bram Moolenaar
Problem: When generating ja.sjis.po the header is not correctly adjusted. Solution: Check for the right header string. (Ken Takata)
2014-11-06updated for version 7.4.507Bram Moolenaar
Problem: Building with MingW and Perl. Solution: Remove quotes. (Ken Takata)