| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Problem: Code for viminfo support is spread out.
Solution: Move to code to viminfo.c. (Yegappan Lakshmanan, closes #4686)
|
|
|
|
|
|
| |
Problem: The eval.txt help file is too big.
Solution: Split off testing support to testing.txt. Move function details
to where the functionality is explained.
|
|
|
|
|
|
| |
Problem: MS-Windows: E325 message may use incorrect date format.
Solution: Convert strftime() result to 'encoding'. Also make the message
translatable. (Ken Takata, closes #4685, closes #4681)
|
|
|
|
|
|
| |
Problem: Too much overhead checking for CTRL-C while processing text.
Solution: Increase BREAKCHECK_SKIP. Remove the difference for when built
with the GUI. (suggested by Andy Massimino, closes #4708)
|
|
|
|
|
|
| |
Problem: Heredoc assignment has no room for new features. (FUJIWARA Takuya)
Solution: Require the marker does not start with a lower case character.
(closes #4705)
|
|
|
|
|
|
| |
Problem: Error when scriptversion is 2 a making a dictionary access.
Solution: Parse the subscript even when not evaluating the sub-expression.
(closes #4704)
|
|
|
|
|
| |
Problem: Build failure with normal features without netbeans interface.
Solution: Enable signs when using the text properties feature.
|
|
|
|
|
| |
Problem: Crash with very long %[] pattern. (Reza Mirzazade farkhani)
Solution: Check for reg_toolong. (closes #4703)
|
|
|
|
|
| |
Problem: Popup too wide when 'showbreak' is set.
Solution: Set window width when computing line length. (closes #4701)
|
|
|
|
|
|
| |
Problem: Popup menu highlighting does not look good.
Solution: Highlight the whole window line. Fix that sign line HL is not
displayed in a window with a background color.
|
|
|
|
|
| |
Problem: Last char in menu popup window highlighted.
Solution: Do not highlight an extra character twice.
|
|
|
|
|
| |
Problem: Old style comments are wasting space
Solution: Use new style comments in option header file.
|
|
|
|
|
|
| |
Problem: Emoji characters are seen as word characters for spelling. (Gautam
Iyer)
Solution: Exclude class 3 from word characters.
|
| |
|
|
|
|
|
| |
Problem: Cannot preview a file in a popup window.
Solution: Add the 'previewpopup' option.
|
|
|
|
|
| |
Problem: Highlighting cursor line only works with popup_menu().
Solution: Add the "cursorline" property. (Naruhiko Nishino, closes #4671)
|
|
|
|
|
| |
Problem: Signs in number column cause text to be misaligned.
Solution: Improve alignment. (Yasuhiro Matsumoto, closes #4694)
|
|
|
|
|
| |
Problem: Listener callback called at the wrong moment
Solution: Invoke listeners before calling ml_delete_int(). (closes #4657)
|
|
|
|
|
| |
Problem: Coverity found dead code.
Solution: Remove merging of listener changes.
|
|
|
|
|
| |
Problem: Coverity warns for possibly using a NULL pointer.
Solution: Make sure no NULL pointer is used.
|
|
|
|
|
| |
Problem: Coverity warns for using uninitialized variable.
Solution: Set the start col when col is set.
|
|
|
|
|
| |
Problem: Coverity warns for possibly using a NULL pointer.
Solution: Change the logic to make sure no NULL pointer is used.
|
|
|
|
|
| |
Problem: Typo in #ifdef.
Solution: Change PROT to PROTO.
|
|
|
|
|
| |
Problem: Using ~{} for a literal dict is not nice.
Solution: Use #{} instead.
|
|
|
|
|
| |
Problem: C-R C-W does not work after C-G when using 'incsearch'.
Solution: Put cursor at end of the match. (Yasuhiro Matsumoto, closes #4664)
|
|
|
|
|
| |
Problem: Breaking out of loop by checking window pointer is insufficient.
Solution: Check the window ID and the buffer number. (closes #4683)
|
|
|
|
|
| |
Problem: Compiler warning for uninitialized variable.
Solution: Initialize it. (Christian Brabandt)
|
|
|
|
|
| |
Problem: Appveyor build with MSVC fails puts progress bar in log.
Solution: Adjust the sed command. (Ken Takata)
|
|
|
|
|
| |
Problem: Listener callback called for the wrong buffer.
Solution: Invoke listeners before calling ml_append_int().
|
|
|
|
|
|
| |
Problem: Highlight_ga can be local instead of global.
Solution: Move highlight_ga into highlight.c. (Yegappan Lakshmanan,
closes #4675)
|
|
|
|
|
| |
Problem: Appveyor build with MSVC fails.
Solution: Remove the sed command
|
|
|
|
|
| |
Problem: Cannto build with MSVC.
Solution: Remove the backslashes after the @<< mechanism.
|
|
|
|
|
|
| |
Problem: MSVC: link command line is too long.
Solution: Use the @<< mechanism to pass the arguments via a file. (Christian
Brabandt)
|
|
|
|
|
|
| |
Problem: Windows 10: crash when cursor is at bottom of terminal.
Solution: Position the cursor before resizing. (Yasuhiro Matsumoto,
closes #4679)
|
|
|
|
|
| |
Problem: The RUN_VIM variable is longer than needed.
Solution: Shorten RUN_VIM. (Daniel Hahler, closes #4643)
|
|
|
|
|
|
| |
Problem: Syntax coloring and highlighting is in one big file.
Solution: Move the highlighting to a separate file. (Yegappan Lakshmanan,
closes #4674)
|
|
|
|
|
|
| |
Problem: Using *{} for literal dict is not backwards compatible. (Yasuhiro
Matsumoto)
Solution: Use ~{} instead.
|
|
|
|
|
| |
Problem: Diff test fails on some systems. (Elimar Riesebieter)
Solution: Add a term_wait() call.
|
|
|
|
|
| |
Problem: Default padding for popup window menu is too much.
Solution: Only add padding left and right.
|
|
|
|
|
|
| |
Problem: Profiling code is spread out.
Solution: Move more profiling code to profiler.c. (Yegappan Lakshmanan,
closes #4668)
|
|
|
|
|
| |
Problem: Old makefiles are no longer useful.
Solution: Delete the makefiles, they most likely don't work anyway.
|
|
|
|
|
| |
Problem: The evalfunc.c file is too big.
Solution: Move testing support to a separate file.
|
|
|
|
|
| |
Problem: "*" of "*{" is recognized as multipy operator. (Yasuhiro Matsumoto)
Solution: Check for the "{".
|
|
|
|
|
| |
Problem: Missing file in distributed file list.
Solution: Add profiling.pro
|
| |
|
|
|
|
|
|
| |
Problem: Profiling functionality is spread out.
Solution: Put profiling functionality in profiling.c. (Yegappan Lakshmanan,
closes #4666)
|
|
|
|
|
| |
Problem: Dictionary with string keys is longer than needed.
Solution: Use *{key: val} for literaly keys.
|
|
|
|
|
|
| |
Problem: Placing a larger number of signs is slow.
Solution: Add functions for dealing with a list of signs. (Yegappan
Lakshmanan, closes #4636)
|
|
|
|
|
| |
Problem: Insert stray "{" when listener gets buffer line. (Paul Jolly)
Solution: Flush the cached line after invoking listeners. (closes #4455)
|
|
|
|
|
| |
Problem: The command table is not well aligned.
Solution: Adjust indent.
|