Age | Commit message (Collapse) | Author |
|
Problem: Using dummy variable to compute struct member offset.
Solution: Use offsetof().
|
|
Problem: qf_init_ext() is too big.
Solution: Move code to qf_parse_line() (Yegappan Lakshmanan)
|
|
Problem: Wrong file name.
Solution: Fix typo.
|
|
Problem: Non-Unix builds fail.
Solution: Update Makefiles for new files.
|
|
Problem: eval.c is too big.
Solution: Move user functions to userfunc.c
|
|
Problem: eval.c is too big.
Solution: Move List functions to list.c
|
|
Problem: Build fails.
Solution: Add missing changes.
|
|
Problem: eval.c is too big.
Solution: Move Dictionary functions to dict.c.
|
|
Problem: Wrong part of #ifdef removed.
Solution: Use the right part. (Hirohito Higashi)
|
|
Problem: Can't run scripttests in the top directory.
Solution: Add targets to the top Makefile.
|
|
Problem: Coverage report is messed up by the unittests.
Solution: Add a separate test target for script tests. Use that when
collecting coverage information.
|
|
Problem: No proper testing of trunc_string().
Solution: Add a unittest for message.c.
|
|
Problem: When using ":vimgrep" may end up with duplicate buffers.
Solution: When adding an error list entry pass the buffer number if possible.
|
|
Problem: There is no way to get a list of the error lists.
Solution: Add ":chistory" and ":lhistory".
|
|
Problem: There is still code and help for unsupported systems.
Solution: Remove the code and text. (Hirohito Higashi)
|
|
Problem: Compiler warning for initializing a struct.
Solution: Initialize in another way. (Anton Lindqvist)
|
|
Problem: The qf_init_ext() function is too big.
Solution: Refactor it. (Yegappan Lakshmanan)
|
|
Problem: Memory leak when using a function callback.
Solution: Don't save the function name when it's in the partial.
|
|
Problem: filter() and map() either require a string or defining a function.
Solution: Support lambda, a short way to define a function that evaluates an
expression. (Yasuhiro Matsumoto, Ken Takata)
|
|
Problem: setbuvfar() causes a screen redraw.
Solution: Only use aucmd_prepbuf() for options.
|
|
Problem: GTK: display updating is not done properly and can be slow.
Solution: Use gdk_display_flush() instead of gdk_display_sync(). Don't call
gdk_window_process_updates(). (Kazunobu Kuriyama)
|
|
Problem: Netbeans file authentication not tested.
Solution: Add a test.
|
|
Problem: New files missing from distribution.
Solution: Add new test scripts.
|
|
Problem: The Netbeans integration is not tested.
Solution: Add a first Netbeans test.
|
|
Problem: Small build still fails.
Solution: Adjust more #ifdefs.
|
|
Problem: Small build fails.
Solution: Adjust #ifdefs.
|
|
Problem: Looking up a buffer by number is slow if there are many.
Solution: Use a hashtab.
|
|
Problem: On Solaris with ZFS the ACL may get removed.
Solution: Always restore the ACL for Solaris ZFS. (Danek Duvall)
|
|
Problem: Build fails with some version of MinGW. (illusorypan)
Solution: Recognize mingw32. (Ken Takata, closes #921)
|
|
Problem: 'cscopequickfix' option does not accept new value "a".
Solution: Adjust list of command characters. (Ken Takata)
|
|
Problem: Build fails with 64 bit MinGW. (Axel Bender)
Solution: Handle dash vs. underscore. (Ken Takata, Hirohito Higashi)
|
|
Problem: The list_lbr_utf8 test fails if ~/.vim/syntax/c.vim sets
'textwidth' to a non-zero value. (Oyvind A. Holm)
Solution: Add a setup.vim file that sets 'runtimepath' and $HOME to a safe
value. (partly by Christian Brabandt, closes #912)
|
|
Problem: ARCH must be set properly when using MinGW.
Solution: Detect the default value of ARCH from the current compiler. (Ken
Takata)
|
|
Problem: printf() does not work with 64 bit numbers.
Solution: use the "L" length modifier. (Ken Takata)
|
|
Problem: cppcheck warns for using index before limits check.
Solution: Swap the expressions. (Dominique Pelle)
|
|
Problem: Can't build with +eval but without +menu.
Solution: Add #ifdef. (John Marriott)
|
|
Problem: Reference counting for callbacks isn't right.
Solution: Add free_callback(). (Ken Takata) Fix reference count.
|
|
Problem: The cursor blinking stops or is irregular when receiving date over
a channel and writing it in a buffer, and when updating the status
line. (Ramel Eshed)
Solution: Make it a bit better by flushing GUI output. Don't redraw the
cursor after updating the screen if the blink state is off.
|
|
Problem: More buf_valid() calls can be optimized.
Solution: Use bufref_valid() instead.
|
|
Problem: buflist_findname_stat() may find a dummy buffer.
Solution: Set the BF_DUMMY flag after loading a dummy buffer. Start
finding buffers from the end of the list.
|
|
Problem: Warnings from 64 bit compiler.
Solution: Add type casts. (Mike Williams)
|
|
Problem: Still too many buf_valid() calls.
Solution: Make au_new_curbuf a bufref. Use bufref_valid() in more places.
|
|
Problem: Can't build without +autocmd feature.
Solution: Adjust #ifdefs.
|
|
Problem: When ignoring case utf_fold() may consume a lot of time.
Solution: Optimize for ASCII.
|
|
Problem: buf_valid() can be slow when there are many buffers.
Solution: Add bufref_valid(), only go through the buffer list when a buffer
was freed.
|
|
Problem: When there are many errors adding them to the quickfix list takes
a long time.
Solution: Add BLN_NOOPT. Don't call buf_valid() in buf_copy_options().
Remember the last file name used. When going through the buffer
list start from the end of the list. Only call buf_valid() when
autocommands were executed.
|
|
Problem: Warning from MinGW about _WIN32_WINNT redefined. (John Marriott)
Solution: First undefine it. (Ken Takata)
|
|
Problem: When a file gets a name when writing it 'acd' is not effective.
(Dan Church)
Solution: Invoke DO_AUTOCHDIR after writing the file. (Allen Haim, closes
#777, closes #803) Add test_autochdir() to enable 'acd' before
"starting" is reset.
|
|
Problem: Using "noinsert" in 'completeopt' does not insert match.
Solution: Set compl_enter_selects. (Shougo, closes #875)
|
|
Problem: Using "noinsert" in 'completeopt' breaks redo.
Solution: Set compl_curr_match. (Shougo, closes #874)
|