Bram Moolenaar
67418d97b4
patch 8.0.1200: tests switch the bell off twice
...
Problem: Tests switch the bell off twice.
Solution: Don't set 'belloff' in individual tests. (Christian Brabandt)
2017-10-15 22:07:39 +02:00
Bram Moolenaar
8bfe07b708
patch 8.0.1199: when 'clipboard' is "autoselectplus" star register is set
...
Problem: When 'clipboard' is "autoselectplus" the star register is also
set. (Gilles Moris)
Solution: Don't set the star register in this situation.
2017-10-15 21:47:05 +02:00
Bram Moolenaar
00ce63dc23
patch 8.0.1198: older compilers don't know uint8_t
...
Problem: Older compilers don't know uint8_t.
Solution: Use char_u instead.
2017-10-15 21:44:45 +02:00
Bram Moolenaar
81b07b527e
patch 8.0.1197: MS-Windows build instructions are not up to date
...
Problem: MS-Windows build instructions are not up to date.
Solution: Adjust the instructions. Fix the nsis script.
2017-10-15 21:43:21 +02:00
Bram Moolenaar
a20f83df1d
patch 8.0.1196: crash when t_RF is not set
...
Problem: Crash when t_RF is not set. (Brian Pina)
Solution: Add t_RF to the list of terminal options. (Hirohito Higashi)
2017-10-15 13:35:01 +02:00
Bram Moolenaar
9377df3ecd
patch 8.0.1195: can't build on MS-Windows
...
Problem: Can't build on MS-Windows.
Solution: Adjust #ifdef and add #ifdefs.
2017-10-15 13:22:01 +02:00
Bram Moolenaar
65e4c4f686
patch 8.0.1194: actual fg and bg colors of terminal are unknown
...
Problem: Actual fg and bg colors of terminal are unknown.
Solution: Add t_RF. Store response to t_RB and t_RF, use for terminal.
2017-10-14 23:24:25 +02:00
Bram Moolenaar
b2c8750c4e
patch 8.0.1193: crash when wiping out a buffer after using getbufinfo()
...
Problem: Crash when wiping out a buffer after using getbufinfo().
(Yegappan Lakshmanan)
Solution: Remove b:changedtick from the buffer variables.
2017-10-14 21:15:58 +02:00
Bram Moolenaar
ac8069bb63
patch 8.0.1192: MS-Windows: terminal feature not enabled by default
...
Problem: MS-Windows: terminal feature not enabled by default.
Solution: Enable it. (Ken Takata)
2017-10-14 20:24:19 +02:00
Bram Moolenaar
6199d43f4b
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
...
Problem: MS-Windows: missing 32 and 64 bit files in installer.
Solution: Include both 32 and 64 bit GvimExt and related dll files. Remove
old Windows code from the installer. (Ken Takata, closes #2144 )
2017-10-14 19:05:44 +02:00
Bram Moolenaar
2c33d7bb69
patch 8.0.1190: unusable after opening new window in BufWritePre event
...
Problem: Vim becomes unusable after opening new window in BufWritePre
event.
Solution: Call not_exiting(). (Martin Tournoij, closes #2205 )
Also for "2q" when a help window is open. Add a test.
2017-10-14 16:06:20 +02:00
Bram Moolenaar
6047e2c722
patch 8.0.1189: E172 is not actually useful
...
Problem: E172 is not actually useful, it's only on Unix anyway.
Solution: Remove the check and the error.
2017-10-14 15:24:49 +02:00
Bram Moolenaar
1d68d9b2bd
patch 8.0.1188: autocmd test fails on MS-Windows
...
Problem: Autocmd test fails on MS-Windows.
Solution: Give the buffer a name and find the buffer to be wiped out by
name.
2017-10-13 22:33:32 +02:00
Bram Moolenaar
8065cf2bfb
patch 8.0.1187: building with lua fails for OSX on Travis
...
Problem: Building with lua fails for OSX on Travis.
Solution: Separate brew-update and brew-install. (Ozaki Kiichi, closes #2203 )
2017-10-12 21:45:23 +02:00
Bram Moolenaar
4a6fcf8047
patch 8.0.1186: still quite a few old style tests
...
Problem: Still quite a few old style tests.
Solution: Convert old to new style tests. (Yegappan Lakshmanan)
Avoid ringing the bell while running tests.
2017-10-12 21:29:22 +02:00
Bram Moolenaar
9202162c5c
patch 8.0.1185: Ruby library includes minor version number
...
Problem: Ruby library includes minor version number.
Solution: Only use the API version number. (Ben Boeckel, closes #2199 )
2017-10-12 12:33:43 +02:00
Bram Moolenaar
9b69f22e66
patch 8.0.1184: the :marks command is not tested
...
Problem: The :marks command is not tested.
Solution: Add a test. (Dominique Pelle, closes #2197 )
2017-10-08 21:53:15 +02:00
Bram Moolenaar
18cfa940e2
patch 8.0.1183: MS-Windows build instructions are outdated
...
Problem: MS-Windows build instructions are outdated.
Solution: Update instructions for MSVC 2015. Update the build script.
2017-10-08 17:58:44 +02:00
Bram Moolenaar
0ab35b279f
patch 8.0.1182: cannot see or change mzscheme dll name
...
Problem: Cannot see or change mzscheme dll name.
Solution: Add 'mzschemedll' and 'mzschemegcdll'.
2017-10-08 17:41:37 +02:00
Bram Moolenaar
4635e11c6b
patch 8.0.1181: tests using Vim command fail on MS-Windows
...
Problem: Tests using Vim command fail on MS-Windows.
Solution: Do not add quotes around the Vim command.
2017-10-07 21:05:18 +02:00
Bram Moolenaar
75f69e5a18
patch 8.0.1180: MS-Windows testclean target deletes the color script
...
Problem: MS-Windows testclean target deletes the color script.
Solution: Rename the script file.
2017-10-07 20:10:29 +02:00
Bram Moolenaar
631820536e
patch 8.0.1179: Test_popup_and_window_resize() does not always pass
...
Problem: Test_popup_and_window_resize() does not always pass.
Solution: Do not use $VIMPROG, pass the Vim executable in the vimcmd file.
(Ozaki Kiichi, closes #2186 )
2017-10-07 20:03:23 +02:00
Bram Moolenaar
73f4439ca6
patch 8.0.1178: using old compiler on MS-Windows
...
Problem: Using old compiler on MS-Windows.
Solution: Switch default build on MS-Windows to use MSVC 2015. (Ken Takata)
2017-10-07 18:38:43 +02:00
Bram Moolenaar
54e5dbf58e
patch 8.0.1177: in a terminal window the popup menu is not cleared
...
Problem: In a terminal window the popup menu is not cleared. (Gerry
Agbobada)
Solution: Redraw when SOME_VALID is used instead of NOT_VALID. (closes
#2194 )
2017-10-07 17:35:09 +02:00
Bram Moolenaar
d78f03f860
patch 8.0.1176: job_start() does not handle quote and backslash correctly
...
Problem: Job_start() does not handle quote and backslash correctly.
Solution: Remove quotes, recognize and remove backslashes.
2017-10-06 01:07:41 +02:00
Bram Moolenaar
c902609f69
patch 8.0.1175: build failure without +termresponse
...
Problem: Build failure without +termresponse.
Solution: Add #ifdef.
2017-10-04 19:35:02 +02:00
Bram Moolenaar
a0a6f2776e
patch 8.0.1174: Mac Terminal.app has wrong color for white
...
Problem: Mac Terminal.app has wrong color for white.
Solution: Use white from the color cube.
2017-10-04 18:04:16 +02:00
Bram Moolenaar
19a3d68b2c
patch 8.0.1173: terminal window is not redrawn after CTRL-L
...
Problem: Terminal window is not redrawn after CTRL-L. (Marcin Szamotulski)
Solution: Redraw the whole terminal when w_redr_type is NOT_VALID.
2017-10-02 21:54:59 +02:00
Bram Moolenaar
2a6a6c3014
patch 8.0.1172: when E734 is given option is still set
...
Problem: When E734 is given option is still set.
Solution: Assign NULL to "s". (Christian Brabandt)
2017-10-02 19:29:48 +02:00
Bram Moolenaar
712549e04e
patch 8.0.1171: popup test is still a bit flaky
...
Problem: Popup test is still a bit flaky.
Solution: Change term_wait() calls. (Ozaki Kiichi)
2017-10-01 16:59:18 +02:00
Bram Moolenaar
f33606112a
patch 8.0.1170: using termdebug results in 100% CPU time
...
Problem: Using termdebug results in 100% CPU time. (tomleb)
Solution: Use polling instead of select().
2017-10-01 16:21:31 +02:00
Bram Moolenaar
5ece3e359c
patch 8.0.1169: highlignting one char too many with 'list' and 'cul'
...
Problem: Highlignting one char too many with 'list' and 'cul'.
Solution: Check for 'list' being active. (Ozaki Kiichi, closes #2177 )
2017-10-01 14:35:02 +02:00
Bram Moolenaar
0aa398f55a
patch 8.0.1168: wrong highlighting with combination of match and 'cursorline'
...
Problem: wrong highlighting with combination of match and 'cursorline'.
Solution: Use "line_attr" when appropriate. (Ozaki Kiichi, closes #2111 )
But don't highlight more than one character.
2017-09-30 21:23:55 +02:00
Bram Moolenaar
3a497e1a41
patch 8.0.1167: Motif: typing in terminal window is slow
...
Problem: Motif: typing in terminal window is slow.
Solution: Do not redraw the whole terminal window but only was was changed.
2017-09-30 20:40:27 +02:00
Bram Moolenaar
c958b31638
patch 8.0.1166: :terminal doesn't work on Mac High Sierra
...
Problem: :terminal doesn't work on Mac High Sierra.
Solution: Change #ifdef for OpenPTY(). (Ozaki Kiichi, Kazunobu Kuriyama,
closes #2162 )
2017-09-30 20:04:36 +02:00
Bram Moolenaar
f52c383156
patch 8.0.1165: popup test is still flaky
...
Problem: Popup test is still flaky.
Solution: Add a term_wait() call. (Ozaki Kiichi)
2017-09-30 16:49:19 +02:00
Bram Moolenaar
65ed136844
patch 8.0.1164: changing StatusLine highlight does not always work
...
Problem: Changing StatusLine highlight while evaluating 'statusline' may
not change the status line color.
Solution: When changing highlighting while redrawing don't cause another
redraw. (suggested by Ozaki Kiichi, closes #2171 , closes #2120 )
2017-09-30 16:00:14 +02:00
Bram Moolenaar
c79977a437
patch 8.0.1163: popup test is flaky
...
Problem: Popup test is flaky.
Solution: Add a WaitFor() and fix another.
2017-09-30 14:39:27 +02:00
Bram Moolenaar
660b85e39a
patch 8.0.1162: shared script for tests cannot be included twice
...
Problem: Shared script for tests cannot be included twice.
Solution: Include it where needed, it will "finish" if loaded again.
2017-09-30 14:26:58 +02:00
Bram Moolenaar
a5e6621aad
patch 8.0.1161: popup menu drawing problem when resizing terminal
...
Problem: Popup menu drawing problem when resizing terminal.
Solution: Redraw after resizing also when a popup menu is visible. (Ozaki
Kiichi, closes #2110 )
2017-09-29 22:42:33 +02:00
Bram Moolenaar
816968defc
patch 8.0.1160: getting tab-local variable fails after closing window
...
Problem: Getting tab-local variable fails after closing window.
Solution: set tp_firstwin and tp_lastwin. (Jason Franklin, closes #2170 )
2017-09-29 21:29:18 +02:00
Bram Moolenaar
d371bbe0ab
patch 8.0.1159: typo in #ifdef
...
Problem: Typo in #ifdef.
Solution: Change "PROT" to "PROTO". (Nobuhiro Takasaki, closes #2165 )
2017-09-28 22:35:25 +02:00
Bram Moolenaar
db51007108
patch 8.0.1158: still old style tests
...
Problem: Still old style tests.
Solution: Convert serveral tests to new style. (Yegappan Lakshmanan)
2017-09-28 21:52:17 +02:00
Bram Moolenaar
9cf39cc57f
patch 8.0.1157: compiler warning on MS-Windows
...
Problem: Compiler warning on MS-Windows.
Solution: Add type cast. (Yasuhiro Matsomoto)
2017-09-27 21:46:19 +02:00
Bram Moolenaar
1ec96c9269
patch 8.0.1156: trouble from removing one -W argument from Perl CFLAGS
...
Problem: Removing one -W argument from Perl CFLAGS may cause trouble.
Solution: Remove all -W flags. (Christian Brabandt)
2017-09-27 21:42:08 +02:00
Bram Moolenaar
d1bc96ce24
patch 8.0.1155: Ruby command triggers a warning
...
Problem: Ruby command triggers a warning when RUBYOPT is set to "-w".
Solution: use "-e_=0" instead of "-e0". (Masataka Pocke Kuwabara, closes
#2143 )
2017-09-26 21:21:44 +02:00
Bram Moolenaar
1b38344e00
patch 8.0.1154: 'indentkeys' does not work properly
...
Problem: 'indentkeys' does not work properly. (Gary Johnson)
Solution: Get the cursor line again. (Christian Brabandt, closes #2151 )
2017-09-26 20:04:54 +02:00
Bram Moolenaar
97fbc404fc
patch 8.0.1153: no tests for diff_hlID() and diff_filler()
...
Problem: No tests for diff_hlID() and diff_filler().
Solution: Add tests. (Dominique Pelle, closes #2156 )
2017-09-26 19:41:46 +02:00
Bram Moolenaar
2a02745709
patch 8.0.1152: encoding of error message wrong in Cygwin terminal
...
Problem: Encoding of error message wrong in Cygwin terminal.
Solution: Get locale from environment variables. (Ken Takata)
2017-09-26 19:10:37 +02:00
Bram Moolenaar
09ca932f8e
patch 8.0.1151: "vim -c startinsert!" doesn't append
...
Problem: "vim -c startinsert!" doesn't append.
Solution: Correct line number on startup. (Christian Brabandt, closes #2117 )
2017-09-26 17:40:45 +02:00