Bram Moolenaar
4670490673
patch 8.0.0662: stray FIXME for fixed problem
...
Problem: Stray FIXME for fixed problem.
Solution: Remove the comment. (Dominique Pelle)
2017-06-22 23:03:12 +02:00
Bram Moolenaar
a529ce068b
patch 8.0.0661: recognizing urxvt mouse codes does not work well
...
Problem: Recognizing urxvt mouse codes does not work well.
Solution: Recognize "Esc[*M" and "Esc[*m". (Maurice Bos, closes #1486 )
2017-06-22 22:37:57 +02:00
Bram Moolenaar
a1fed064d1
patch 8.0.0660: silent install on MS-Windows shows dialog
...
Problem: Silent install on MS-Windows does show a dialog.
Solution: Add /SD to the default choice. (allburov, closes #1772 )
2017-06-22 22:05:02 +02:00
Bram Moolenaar
4d785895d1
patch 8.0.0659: no test for conceal mode
...
Problem: No test for conceal mode.
Solution: Add a conceal mode test. (Dominique Pelle, closes #1783 )
2017-06-22 22:00:50 +02:00
Bram Moolenaar
d2c061d24c
patch 8.0.0658: spell test is old style
...
Problem: Spell test is old style.
Solution: Turn the spell test into a new style test (pschuh, closes #1778 )
2017-06-22 21:42:49 +02:00
Bram Moolenaar
6a8958db25
patch 8.0.0657: cannot get and set quickfix list items
...
Problem: Cannot get and set quickfix list items.
Solution: Add the "items" argument to getqflist() and setqflist(). (Yegappan
Lakshmanan)
2017-06-22 21:33:20 +02:00
Bram Moolenaar
6f9a476b2f
patch 8.0.0656: cannot use ! after some user commands
...
Problem: Cannot use ! after some user commands.
Solution: Properly check for existing command. (Higashi Higashi)
2017-06-22 20:39:17 +02:00
Bram Moolenaar
d6abcd154c
patch 8.0.0655: not easy to make sure a function does not exist
...
Problem: Not easy to make sure a function does not exist.
Solution: Add ! as an optional argument to :delfunc.
2017-06-22 19:15:24 +02:00
Bram Moolenaar
663bb23316
patch 8.0.0654: no warning for text after :endfunction
...
Problem: Text found after :endfunction is silently ignored.
Solution: Give a warning if 'verbose' is set. When | or \n are used,
execute the text as a command.
2017-06-22 19:12:10 +02:00
Bram Moolenaar
c768a208ca
patch 8.0.0653: the default highlight for QuickFixLine is not good
...
Problem: The default highlight for QuickFixLine does not work for several
color schemes. (Manas Thakur)
Solution: Make the default use the old color. (closes #1780 )
2017-06-22 16:04:27 +02:00
Bram Moolenaar
383aa84c0d
patch 8.0.0652: unicode information is outdated
...
Problem: Unicode information is outdated.
Solution: Update to Unicode 10. (Christian Brabandt)
2017-06-22 15:27:37 +02:00
Bram Moolenaar
157069b04e
patch 8.0.0651: build failure without the auto command feature
...
Problem: Build failure without the auto command feature.
Solution: Add #ifdef. (closes #1782 )
2017-06-22 14:56:12 +02:00
Bram Moolenaar
868831f122
patch 8.0.0650: for extra help files the filetype is set more than once
...
Problem: For extra help files the filetype is set more than once.
Solution: In *.txt files check that there is no help file modline.
2017-06-22 14:47:22 +02:00
Bram Moolenaar
9049298f8d
patch 8.0.0649: when opening a help file the filetype is set several times
...
Problem: When opening a help file the filetype is set several times.
Solution: When setting the filetype to the same value from a modeline, don't
trigger FileType autocommands. Don't set the filetype to "help"
when it's already set correctly.
2017-06-22 14:16:31 +02:00
Bram Moolenaar
fadacf01d0
patch 8.0.0648: possible use of NULL pointer
...
Problem: Possible use of NULL pointer if buflist_new() returns NULL.
(Coverity)
Solution: Check for NULL pointer in set_bufref().
2017-06-19 20:35:32 +02:00
Bram Moolenaar
06f1ed2f78
patch 8.0.0647: syntax highlighting can make cause a freeze
...
Problem: Syntax highlighting can make cause a freeze.
Solution: Apply 'redrawtime' to syntax highlighting, per window.
2017-06-18 22:41:03 +02:00
Bram Moolenaar
0946326580
patch 8.0.0646: the hlsearch test fails on fast systems
...
Problem: The hlsearch test fails on fast systems.
Solution: Make the search pattern slower. Fix that the old regexp engine
doesn't timeout properly.
2017-06-17 20:55:06 +02:00
Bram Moolenaar
1ef9bbe215
patch 8.0.0645: no error for illegal back reference in NFA engine
...
Problem: The new regexp engine does not give an error for using a back
reference where it is not allowed. (Dominique Pelle)
Solution: Check the back reference like the old engine. (closes #1774 )
2017-06-17 20:08:20 +02:00
Bram Moolenaar
5b1affefd0
patch 8.0.0644: the timeout for 'hlsearch' is not tested
...
Problem: There is no test for 'hlsearch' timing out.
Solution: Add a test.
2017-06-17 19:13:49 +02:00
Bram Moolenaar
fbd0b0af68
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
...
Problem: When 'hlsearch' is set and matching with the last search pattern
is very slow, Vim becomes unusable. Cannot quit search by
pressing CTRL-C.
Solution: When the search times out set a flag and don't try again. Check
for timeout and CTRL-C in NFA loop that adds states.
2017-06-17 18:44:21 +02:00
Bram Moolenaar
8cf91286ca
patch 8.0.0642: writefile() continues after detecting an error
...
Problem: writefile() continues after detecting an error.
Solution: Bail out as soon as an error is detected. (suggestions by Nikolai
Pavlov, closes #1476 )
2017-06-13 19:38:37 +02:00
Bram Moolenaar
3ec574f2b5
Update runtime files.
...
Includes changing &sw to shiftwidth() for all indent scripts.
2017-06-13 18:12:01 +02:00
Bram Moolenaar
2102035488
patch 8.0.0641: cannot set a separate highlighting for the quickfix line
...
Problem: Cannot set a separate highlighting for the current line in the
quickfix window.
Solution: Add QuickFixLine. (anishsane, closes #1755 )
2017-06-13 17:21:04 +02:00
Bram Moolenaar
83064068ea
patch 8.0.0640: mismatch between help and actual message
...
Problem: Mismatch between help and actual message for ":syn conceal".
Solution: Change the message to match the help. (Ken Takata)
2017-06-13 16:34:54 +02:00
Bram Moolenaar
9a48961d8b
patch 8.0.0639: the cursor position is set when editing a new commit message
...
Problem: The cursor position is set to the last position in a new commit
message.
Solution: Don't set the position if the filetype matches "commit".
(Christian Brabandt)
2017-06-13 16:12:51 +02:00
Bram Moolenaar
d7383881c8
patch 8.0.0638: cannot build with new MSVC version
...
Problem: Cannot build with new MSVC version VS2017.
Solution: Change the compiler arguments. (Leonardo Manera, closes #1731 ,
closes #1747 )
2017-06-13 15:22:12 +02:00
Bram Moolenaar
21b34b63b3
patch 8.0.0637: crash when using some version of GTK 3
...
Problem: Crash when using some version of GTK 3.
Solution: Add #ifdefs around incrementing the menu index. (Kazunobu
Kuriyama)
2017-06-13 14:34:01 +02:00
Bram Moolenaar
56f2db562d
patch 8.0.0636: when reading the undo file fails may use uninitialized data
...
Problem: When reading the undo file fails may use uninitialized data.
Solution: Always clear the buffer on failure.
2017-06-11 23:09:15 +02:00
Bram Moolenaar
3a429efb62
patch 8.0.0635: when 'ignorecase' is set script detection is inaccurate
...
Problem: When 'ignorecase' is set script detection is inaccurate.
Solution: Enforce matching case for text. (closes #1753 )
2017-06-11 17:10:32 +02:00
Bram Moolenaar
875feea6ce
patch 8.0.0634: cannot easily get to the last quickfix list
...
Problem: Cannot easily get to the last quickfix list.
Solution: Add "$" as a value for the "nr" argument of getqflist() and
setqflist(). (Yegappan Lakshmanan)
2017-06-11 16:07:51 +02:00
Bram Moolenaar
60964f6874
patch 8.0.0633: the client-server test is still a bit flaky
...
Problem: The client-server test is still a bit flaky.
Solution: Wait a bit for the GUI to start. Check that the version number
can be obtained.
2017-06-10 17:06:16 +02:00
Bram Moolenaar
1c13c0fe3e
patch 8.0.0632: the quotestar test is still a bit flaky
...
Problem: The quotestar test is still a bit flaky.
Solution: Kill any existing server to make the retry work. Wait for the
register to be filled.
2017-06-10 16:30:32 +02:00
Bram Moolenaar
fa4161cb0c
patch 8.0.0631: can't build with Perl 5.26
...
Problem: Perl 5.26 also needs S_TOPMARK and S_POPMARK defined.
Solution: Define the functions when needed. (Jesin, closes #1748 )
2017-06-10 15:46:23 +02:00
Bram Moolenaar
f84b122a99
patch 8.0.0630: it is not easy to work on lines without a match
...
Problem: The :global command does not work recursively, which makes it
difficult to execute a command on a line where one pattern matches
and another does not match. (Miles Cranmer)
Solution: Allow for recursion if it is for only one line. (closes #1760 )
2017-06-10 14:29:52 +02:00
Bram Moolenaar
6b1da3312e
patch 8.0.0629: checking for ambigous width is not working
...
Problem: Checking for ambigous width is not working. (Hirohito Higashi)
Solution: Reset "starting" earlier.
2017-06-09 21:35:47 +02:00
Bram Moolenaar
f085f4266e
patch 8.0.0628: cursor disappears after silent mapping
...
Problem: Cursor disappears after silent mapping. (Ramel Eshed)
Solution: Do restore the cursor when it was changed, but don't change it in
the first place for a silent mapping.
2017-06-07 20:39:47 +02:00
Bram Moolenaar
add8dce38d
patch 8.0.0627: "gn" selects only one character with 'nowrapscan'
...
Problem: When 'wrapscan' is off "gn" does not select the whole pattern when
it's the last one in the text. (KeyboardFire)
Solution: Check if the search fails. (Christian Brabandt, closes #1683 )
2017-06-05 19:56:04 +02:00
Bram Moolenaar
e21d69eec1
patch 8.0.0626: in the GUI the cursor may flicker
...
Problem: In the GUI the cursor may flicker.
Solution: Check the cmd_silent flag before updating the cursor shape.
(Hirohito Higashi, closes #1637 )
2017-06-05 19:32:32 +02:00
Bram Moolenaar
206155280d
patch 8.0.0625: shellescape() always escapes a newline
...
Problem: shellescape() always escapes a newline, which does not work with
some shells. (Harm te Hennepe)
Solution: Only escape a newline when the "special" argument is non-zero.
(Christian Brabandt, closes #1590 )
2017-06-05 18:46:26 +02:00
Bram Moolenaar
6c95fbc9ae
patch 8.0.0624: warning for unused variable in tiny build
...
Problem: Warning for unused variable in tiny build. (Tony Mechelynck)
Solution: Add an #ifdef.
2017-06-05 17:53:37 +02:00
Bram Moolenaar
966e58e413
patch 8.0.0623: error for invalid regexp is not very informative
...
Problem: The message "Invalid range" is used for multiple errors.
Solution: Add two more specific error messages. (Itchyny, Ken Hamada)
2017-06-05 16:54:08 +02:00
Bram Moolenaar
c5e2b040b4
patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive"
...
Problem: Using a text object to select quoted text fails when 'selection'
is set to "exclusive". (Guraga)
Solution: Swap cursor and visual start position. (Christian Brabandt,
closes #1687 )
2017-06-05 16:37:07 +02:00
Bram Moolenaar
8ad80dea08
patch 8.0.0621: :stag does not respect 'switchbuf'
...
Problem: The ":stag" command does not respect 'switchbuf'.
Solution: Check 'switchbuf' for tag commands that may open a new window.
(Ingo Karkat, closes #1681 ) Define macros for the return values
of getfile().
2017-06-05 16:01:59 +02:00
Bram Moolenaar
b463e8d999
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not needed
...
Problem: Since we only support GTK versions that have it, the ckeck for
HAVE_GTK_MULTIHEAD is no longer needed.
Solution: Remove HAVE_GTK_MULTIHEAD. (Kazunobu Kuriyama)
2017-06-05 15:07:09 +02:00
Bram Moolenaar
6aa8cea46d
Update runtime files.
2017-06-05 14:44:35 +02:00
Bram Moolenaar
9472eec83c
patch 8.0.0619: GUI gets stuck if timer uses feedkeys()
...
Problem: In the GUI, when a timer uses feedkeys(), it still waits for an
event. (Raymond Ko)
Solution: Check tb_change_cnt in one more place.
2017-06-05 13:31:56 +02:00
Bram Moolenaar
bb7943b792
patch 8.0.0618: NFA regex engine handles [0-z] incorrectly
...
Problem: NFA regex engine handles [0-z] incorrectly.
Solution: Return at the right point. (James McCoy, closes #1703 )
2017-06-05 13:30:06 +02:00
Bram Moolenaar
763209c57b
patch 8.0.0617: hardcopy test hangs on MS-Windows
...
Problem: Hardcopy test hangs on MS-Windows.
Solution: Check the postscript feature is supported.
2017-06-04 21:40:36 +02:00
Bram Moolenaar
1615b36b91
patch 8.0.0616: not always setting 'background' correctly after :hi Normal
...
Problem: When setting the cterm background with ":hi Normal" the value of
'background' may be set wrongly.
Solution: Check that the color is less than 16. Don't set 'background' when
it was set explicitly. (Lemonboy, closes #1710 )
2017-06-04 21:06:09 +02:00
Bram Moolenaar
bf15b8d78b
patch 8.0.0615: using % with :hardcopy wrongly escapes spaces
...
Problem: Using % with :hardcopy wrongly escapes spaces. (Alexey Muranov)
Solution: Expand % differently. (Christian Brabandt, closes #1682 )
2017-06-04 20:43:48 +02:00