Bram Moolenaar
f8b036bcae
patch 8.1.2266: position unknown for a mouse click in a popup window
...
Problem: Position unknown for a mouse click in a popup window.
Solution: Set v:mouse_col and v:mouse_lnum. (closes #5171 )
v8.1.2266
2019-11-06 21:09:17 +01:00
Bram Moolenaar
638a4a7508
patch 8.1.2265: when popup with "botleft" does not fit it flips incorrectly
...
Problem: When popup with "botleft" does not fit it flips incorrectly.
Solution: Only flip when there is more space on the other side. Add the
"posinvert" option to disable flipping and do it in both
directions if enabled. (closes #5151 )
v8.1.2265
2019-11-06 19:25:22 +01:00
Bram Moolenaar
fcf8a8743b
patch 8.1.2264: there are two test files for :let
...
Problem: There are two test files for :let.
Solution: Merge the two files.
v8.1.2264
2019-11-06 15:22:00 +01:00
Bram Moolenaar
215ba3b636
patch 8.1.2263: 'noesckeys' test fails in GUI
...
Problem: 'noesckeys' test fails in GUI.
Solution: Skip the test in the GUI.
v8.1.2263
2019-11-06 15:07:07 +01:00
Bram Moolenaar
1e673b9eb6
patch 8.1.2262: unpack assignment in function not recognized
...
Problem: Unpack assignment in function not recognized.
Solution: Skip over "[a, b]". (closes #5051 )
v8.1.2262
2019-11-06 15:02:50 +01:00
Bram Moolenaar
177c9f2f06
patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't work
...
Problem: With modifyOtherKeys set 'noesckeys' doesn't work. (James McCoy)
Solution: Disable modifyOtherKeys while in Insert mode when 'noesckeys' is
set. (closes #5180 )
v8.1.2261
2019-11-06 13:59:16 +01:00
Bram Moolenaar
36ec6f6953
patch 8.1.2260: terminal test may fail on MS-Windows
...
Problem: Terminal test may fail on MS-Windows.
Solution: Catch the situation that "term dir" fails with a CreateProcess
error.
v8.1.2260
2019-11-05 22:38:47 +01:00
Bram Moolenaar
7d2320414f
patch 8.1.2259: running tests may leave XfakeHOME behind
...
Problem: Running tests may leave XfakeHOME behind.
Solution: Source summarize.vim without using setup.vim. (closes #5177 )
Also fix that on MS-Windows the test log isn't echoed.
v8.1.2259
2019-11-05 22:37:20 +01:00
Bram Moolenaar
dc968e7a45
patch 8.1.2258: may get hit-enter prompt after entering a number
...
Problem: May get hit-enter prompt after entering a number. (Malcolm Rowe)
Solution: Put back accidentally deleted lines. (closes #5176 )
v8.1.2258
2019-11-05 21:53:20 +01:00
Bram Moolenaar
ae20f340ad
patch 8.1.2257: MS-Windows GUI: scroll wheel always uses current window
...
Problem: MS-Windows GUI: scroll wheel always uses current window.
Solution: Add the 'scrollfocus' option for MS-Windows.
v8.1.2257
2019-11-05 21:09:23 +01:00
Bram Moolenaar
e5a3272d32
patch 8.1.2256: test for ":term ++shell" fails on MS-Windows
...
Problem: Test for ":term ++shell" fails on MS-Windows.
Solution: Accept failure of "dir" executable.
v8.1.2256
2019-11-04 23:36:29 +01:00
Bram Moolenaar
2d6d76f9cd
patch 8.1.2255: ":term ++shell" does not work on MS-Windows
...
Problem: ":term ++shell" does not work on MS-Windows.
Solution: Add MS-Windows support.
v8.1.2255
2019-11-04 23:18:35 +01:00
Bram Moolenaar
0630bb6580
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
...
Problem: MS-Windows: mouse scroll wheel doesn't work in popup.
Solution: Handle mouse wheel events separately. (closes #5138 )
v8.1.2254
2019-11-04 22:52:12 +01:00
Bram Moolenaar
ad4de52510
patch 8.1.2253: using "which" to check for an executable is not reliable
...
Problem: Using "which" to check for an executable is not reliable.
Solution: Use "command -v" instead. Also exit with error code when
generating tags has an error. (closes #5174 )
v8.1.2253
2019-11-04 21:24:48 +01:00
Bram Moolenaar
2ade714728
patch 8.1.2252: compiler warning for int size
...
Problem: Compiler warning for int size.
Solution: Add type cast. (Mike Williams)
v8.1.2252
2019-11-04 20:36:50 +01:00
Bram Moolenaar
197c6b7da3
patch 8.1.2251: ":term command" may not work without a shell
...
Problem: ":term command" may not work without a shell.
Solution: Add the ++shell option to :term. (closes #3340 )
v8.1.2251
2019-11-03 23:37:12 +01:00
Bram Moolenaar
30efcf3d26
patch 8.1.2250: CTRL-U and CTRL-D don't work in popup window
...
Problem: CTRL-U and CTRL-D don't work in popup window.
Solution: Initialize 'scroll'. Add "lastline" in popup_getpos().
(closes #5170 )
v8.1.2250
2019-11-03 22:29:38 +01:00
Bram Moolenaar
d047840ce4
patch 8.1.2249: "make vimtags" does not print any message
...
Problem: "make vimtags" does not print any message.
Solution: Add a message that the tags have been updated.
v8.1.2249
2019-11-03 21:46:19 +01:00
Bram Moolenaar
1e814bc017
patch 8.1.2248: CTRL-W dot does not work when modifyOtherKeys is enabled
...
Problem: CTRL-W dot does not work in a terminal when modifyOtherKeys is
enabled.
Solution: Use the modifier when needed. Pass the modifier along with the
key to avoid mistakes.
v8.1.2248
2019-11-03 21:19:41 +01:00
Bram Moolenaar
e890b9f5dd
patch 8.1.2247: "make vimtags" does not work in runtime/doc
...
Problem: "make vimtags" does not work in runtime/doc.
Solution: Test existence with "which" instead of "test -x". (Ken Takata)
v8.1.2247
2019-11-03 18:38:47 +01:00
Bram Moolenaar
1f068233c1
patch 8.1.2246: some tests are still in old style
...
Problem: Some tests are still in old style.
Solution: Change a few tests to new style. (Yegappan Lakshmanan)
v8.1.2246
2019-11-03 16:17:26 +01:00
Bram Moolenaar
2f7b7b1e12
patch 8.1.2245: third character of 'listchars' tab shows in wrong place
...
Problem: Third character of 'listchars' tab shows in wrong place when
'breakindent' is set.
Solution: Set c_final to NUL. (Naruhiko Nishino, closes #5165 )
v8.1.2245
2019-11-03 15:46:48 +01:00
Bram Moolenaar
82cf7f6df7
patch 8.1.2244: 'wrapscan' is not used for "gn"
...
Problem: 'wrapscan' is not used for "gn".
Solution: Only reset 'wrapscan' for the first search round. (closes #5164 )
v8.1.2244
2019-11-02 23:22:47 +01:00
Bram Moolenaar
32aa10203b
patch 8.1.2243: typos in comments
...
Problem: Typos in comments.
Solution: Fix the typos. (Dominique Pelle, closes #5160 ) Also adjust
formatting a bit.
v8.1.2243
2019-11-02 22:54:41 +01:00
Bram Moolenaar
70def98a95
patch 8.1.2242: creating docs tags uses user preferences
...
Problem: Creating docs tags uses user preferences. (Tony Mechelynck)
Solution: Add "--clean".
v8.1.2242
2019-11-02 22:45:31 +01:00
Bram Moolenaar
024dbd229f
patch 8.1.2241: match highlight does not combine with 'wincolor'
...
Problem: Match highlight does not combine with 'wincolor'.
Solution: Apply 'wincolor' last on top of any other attribute. (closes #5159 )
v8.1.2241
2019-11-02 22:00:15 +01:00
Bram Moolenaar
f2885d3fb7
patch 8.1.2240: popup window width changes when scrolling
...
Problem: Popup window width changes when scrolling.
Solution: Also adjust maxwidth when applying minwidth and there is a
scrollbar. Fix off-by-one error. (closes #5162 )
v8.1.2240
2019-11-02 20:21:25 +01:00
Bram Moolenaar
1a577433ac
patch 8.1.2239: CI fails when running tests without building Vim
...
Problem: CI fails when running tests without building Vim.
Solution: Skip creating doc tags if the execute does not exist.
v8.1.2239
2019-11-02 18:22:08 +01:00
Bram Moolenaar
1ff14ba24c
Update runtime files.
2019-11-02 14:09:23 +01:00
Bram Moolenaar
757bd2ea49
patch 8.1.2238: error in docs tags goes unnoticed
...
Problem: Error in docs tags goes unnoticed.
Solution: Adjust tags build command. (Ken Takata, closes #5158 )
v8.1.2238
2019-11-01 19:46:22 +01:00
Bram Moolenaar
7a641ca1e1
patch 8.1.2237: mode() result depends on whether CURSOR_SHAPE is defined
...
Problem: Mode() result after usign "r" depends on whether CURSOR_SHAPE is
defined. (Christian Brabandt)
Solution: Move the #ifdef to only skip ui_cursor_shape().
v8.1.2237
2019-10-31 19:55:55 +01:00
Bram Moolenaar
bb26596242
patch 8.1.2236: ml_get error if pattern matches beyond last line
...
Problem: Ml_get error if pattern matches beyond last line.
Solution: Adjust position if needed. (Christian Brabandt, closes #5139 )
v8.1.2236
2019-10-31 04:38:36 +01:00
Bram Moolenaar
77ccc00340
patch 8.1.2235: "C" with 'virtualedit' set does not include multi-byte char
...
Problem: "C" with 'virtualedit' set does not include multi-byte char.
Solution: Include the whole multi-byte char. (Nobuhiro Takasaki,
closes #5152 )
v8.1.2235
2019-10-31 03:21:25 +01:00
Bram Moolenaar
3f39697b73
patch 8.1.2234: get_short_pathname() fails depending on encoding
...
Problem: get_short_pathname() fails depending on encoding.
Solution: Use the wide version of the library function. (closes #5129 )
v8.1.2234
2019-10-30 04:10:06 +01:00
Bram Moolenaar
69bf634858
patch 8.1.2233: cannot get the Vim command line arguments
...
Problem: Cannot get the Vim command line arguments.
Solution: Add v:argv. (Dmitri Vereshchagin, closes #1322 )
v8.1.2233
2019-10-29 04:16:57 +01:00
Bram Moolenaar
8b530c1ff9
patch 8.1.2231: not easy to move to the middle of a text line
...
Problem: Not easy to move to the middle of a text line.
Solution: Add the gM command. (Yasuhiro Matsumoto, closes #2070 )
v8.1.2231
2019-10-28 02:13:05 +01:00
Bram Moolenaar
077ff436a7
patch 8.1.2230: MS-Windows: testing external commands can be improved
...
Problem: MS-Windows: testing external commands can be improved.
Solution: Adjust tests, remove duplicate test. (closes #4928 )
v8.1.2230
2019-10-28 00:42:21 +01:00
Bram Moolenaar
efae76ab1a
patch 8.1.2229: cannot color number column above/below cursor differently
...
Problem: Cannot color number column above/below cursor differently.
Solution: Add LineNrAbove and LineNrBelow. (Shaun Brady, closes #624 )
v8.1.2229
2019-10-27 22:54:58 +01:00
Bram Moolenaar
38ba4dce4a
patch 8.1.2228: screenpos() returns wrong values when 'number' is set
...
Problem: screenpos() returns wrong values when 'number' is set. (Ben
Jackson)
Solution: Compare the column with the window width. (closes #5133 )
v8.1.2228
2019-10-27 21:39:09 +01:00
Bram Moolenaar
1c329c04be
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window is open
...
Problem: Layout wrong if 'lines' changes while cmdline window is open.
Solution: Do not restore the window layout if 'lines' changed.
(closes #5130 )
v8.1.2227
2019-10-27 20:37:35 +01:00
Bram Moolenaar
5b418992cf
patch 8.1.2226: cannot use system copy/paste in non-xterm terminals
...
Problem: Cannot use system copy/paste in non-xterm terminals.
Solution: Instead of setting 'mouse' to "a" set it to "nvi" in defaults.vim.
v8.1.2226
2019-10-27 18:50:25 +01:00
Bram Moolenaar
52410575be
patch 8.1.2225: the "last used" info of a buffer is under used
...
Problem: The "last used" info of a buffer is under used.
Solution: Add "lastused" to getbufinfo(). List buffers sorted by last-used
field. (Andi Massimino, closes #4722 )
v8.1.2225
2019-10-27 05:12:45 +01:00
Bram Moolenaar
dfded98f87
patch 8.1.2224: cannot build Amiga version
...
Problem: Cannot build Amiga version.
Solution: Add dummy mch_setmouse(). (Ola Söder, closes #5126 )
v8.1.2224
2019-10-26 21:33:19 +02:00
Bram Moolenaar
cb86893114
patch 8.1.2223: cannot see what buffer an ml_get error is for
...
Problem: Cannot see what buffer an ml_get error is for.
Solution: Add the buffer number and name in the message
v8.1.2223
2019-10-26 20:56:21 +02:00
Bram Moolenaar
7ab5d77666
patch 8.1.2222: accessing invalid memory
...
Problem: Accessing invalid memory. (Dominique Pelle)
Solution: Reset highlight_match every time. (closes #5125 )
v8.1.2222
2019-10-26 20:45:24 +02:00
Bram Moolenaar
96f45c0b6f
Update runtime files
2019-10-26 19:53:45 +02:00
Bram Moolenaar
8fc4296436
patch 8.1.2221: cannot filter :disp output
...
Problem: Cannot filter :disp output.
Solution: Support filtereing :disp output. (Andi Massimino, closes #5117 )
v8.1.2221
2019-10-26 17:33:13 +02:00
Bram Moolenaar
6a0cc916bd
patch 8.1.2220: :cfile does not abort like other quickfix commands
...
Problem: :cfile does not abort like other quickfix commands.
Solution: Abort when desired. Add tests for aborting. (Yegappan Lakshmanan,
closes #5121 )
v8.1.2220
2019-10-26 16:48:44 +02:00
Bram Moolenaar
28ed4dfe1f
patch 8.1.2219: no autocommand for open window with terminal
...
Problem: No autocommand for open window with terminal.
Solution: Add TerminalWinOpen. (Christian Brabandt)
v8.1.2219
2019-10-26 16:21:40 +02:00
Bram Moolenaar
453c19257f
patch 8.1.2218: "gN" is off by one in Visual mode
...
Problem: "gN" is off by one in Visual mode.
Solution: Check moving forward. (Christian Brabandt, #5075 )
v8.1.2218
2019-10-26 14:42:09 +02:00