Bram Moolenaar
a997b45c7e
patch 8.0.1732: crash when terminal API call deletes the buffer
...
Problem: Crash when terminal API call deletes the buffer.
Solution: Lock the buffer while calling a function. (closes #2813 )
2018-04-17 23:24:06 +02:00
Bram Moolenaar
e87edf3b85
patch 8.0.1731: characters deleted on completion
...
Problem: Characters deleted on completion. (Adrià Farrés)
Solution: Also check the last item for the ORIGINAL_TEXT flag. (Christian
Brabandt, closes #1645 )
2018-04-17 22:14:32 +02:00
Bram Moolenaar
561f8a5a46
patch 8.0.1730: no configure check for the used C99 features
...
Problem: No configure check for the used C99 features.
Solution: Add a compilation check. Tentatively document C99 features.
2018-04-17 22:02:45 +02:00
Bram Moolenaar
ea3ece405a
patch 8.0.1729: no comma after last enum item
...
Problem: No comma after last enum item.
Solution: Add a few commas to check if this works for all compilers. Also
add a few // comments.
2018-04-17 20:14:39 +02:00
Bram Moolenaar
1feab2b9cc
patch 8.0.1728: condition always false, useless code
...
Problem: Condition always false, useless code.
Solution: Remove the code. (Nikolai Pavlov, closes #2808 )
2018-04-17 20:12:08 +02:00
Bram Moolenaar
353eeeaca2
patch 8.0.1727: qf_get_properties() function is too long
...
Problem: qf_get_properties() function is too long.
Solution: Refactor the code. (Yegappan Lakshmanan, closes #2807 )
2018-04-16 18:04:57 +02:00
Bram Moolenaar
df2c774ded
patch 8.0.1726: older MSVC doesn't support declarations halfway a block
...
Problem: Older MSVC doesn't support declarations halfway a block.
Solution: Move the declaration back to the start of the block.
2018-04-16 17:06:09 +02:00
Bram Moolenaar
32c67ba733
patch 8.0.1725: terminal debugger doesn't handle command arguments
...
Problem: Terminal debugger doesn't handle command arguments.
Solution: Add the :TermdebugCommand command. Use a ! to execute right away.
(Christian Brabandt)
2018-04-16 16:21:49 +02:00
Bram Moolenaar
06965b838f
patch 8.0.1724: declarations cannot be halfway a block
...
Problem: Declarations cannot be halfway a block.
Solution: Move one declaration to check if this works for all compilers.
2018-04-16 15:40:50 +02:00
Bram Moolenaar
f3a411783c
patch 8.0.1723: using one item array size declaration is misleading
...
Problem: Using one item array size declaration is misleading.
Solution: Instead of using "[1]" and actually using a larger array, use
"[]". This is to verify that this C99 feature works for all
compilers.
2018-04-16 14:45:45 +02:00
Bram Moolenaar
498c2562e1
patch 8.0.1722: cannot specify a minimal size for a terminal window
...
Problem: Cannot specify a minimal size for a terminal window.
Solution: Support the "rows*cols" format for 'winsize'.
2018-04-15 23:45:15 +02:00
Bram Moolenaar
a7eef3d87f
patch 8.0.1721: no test for using the 'termsize' option
...
Problem: No test for using the 'termsize' option.
Solution: Add a test.
2018-04-15 22:25:54 +02:00
Bram Moolenaar
802bfb1463
patch 8.0.1720: when a timer is running a terminal window may not close
...
Problem: When a timer is running a terminal window may not close after a
shell has exited.
Solution: Call job_status() more often.
2018-04-15 17:28:13 +02:00
Bram Moolenaar
e1a32310d5
patch 8.0.1719: cannot specify which Python executable configure should use
...
Problem: Cannot specify which Python executable configure should use.
Solution: Add --with-python-command and --with-python3-command.
2018-04-15 16:03:25 +02:00
Bram Moolenaar
6c672194cd
patch 8.0.1718: terminal scrollback test fails on MS-Windows
...
Problem: Terminal scrollback test fails on MS-Windows.
Solution: Check for the last line of output anticipating there might be an
empty line below it.
2018-04-15 13:28:42 +02:00
Bram Moolenaar
3cba73423e
patch 8.0.1717: C89 check causes too much trouble
...
Problem: C89 check causes too much trouble.
Solution: Remove enforcing C89 for now.
2018-04-15 13:12:46 +02:00
Bram Moolenaar
ac3e830065
patch 8.0.1716: test for term_setsize() does not give a good error message
...
Problem: Test for term_setsize() does not give a good error message.
Solution: use assert_inrange().
2018-04-15 13:10:44 +02:00
Bram Moolenaar
8c94a54905
patch 8.0.1715: terminal buffer can be 1 more than 'terminalscroll' lines
...
Problem: Terminal buffer can be 1 more than 'terminalscroll' lines.
Solution: Change > to >=.
2018-04-15 12:55:13 +02:00
Bram Moolenaar
6e72cd0d72
patch 8.0.1714: term_setsize() does not give an error in a normal buffer
...
Problem: Term_setsize() does not give an error in a normal buffer.
Solution: Add an error message.
2018-04-14 21:31:35 +02:00
Bram Moolenaar
b3623a382a
patch 8.0.1713: terminal debugger doesn't handle arguments
...
Problem: Terminal debugger doesn't handle arguments.
Solution: Use <f-args> and pass all the arguments to gdb, e.g. the core file
or process number. (suggested by Christian Brabandt) Disallow
starting the debugger twice.
2018-04-14 18:59:50 +02:00
Bram Moolenaar
8c041b6b95
patch 8.0.1712: terminal scrollback is not limited
...
Problem: Terminal scrollback is not limited.
Solution: Add the 'terminalscroll' option.
2018-04-14 18:14:06 +02:00
Bram Moolenaar
a42d363bac
patch 8.0.1711: term_setsize() is not implemented yet
...
Problem: Term_setsize() is not implemented yet.
Solution: Implement it.
2018-04-14 17:05:38 +02:00
Bram Moolenaar
2a43230ce3
patch 8.0.1710: building with Ruby fails
...
Problem: Building with Ruby fails.
Solution: Don't add -ansi when building with Ruby.
2018-04-14 16:12:30 +02:00
Bram Moolenaar
2e324950b8
patch 8.0.1709: some non-C89 code may slip through
...
Problem: Some non-C89 code may slip through.
Solution: Enforce C89 in configure. Fix detected problems. (James McCoy,
closes #2735 )
2018-04-14 14:37:07 +02:00
Bram Moolenaar
78a16b0f2a
patch 8.0.1708: mkdir with 'p' flag fails on existing directory
...
Problem: Mkdir with 'p' flag fails on existing directory, which is
different from the mkdir shell command.
Solution: Don't fail if the directory already exists. (James McCoy,
closes #2775 )
2018-04-14 13:51:55 +02:00
Bram Moolenaar
98da6ecab9
patch 8.0.1707: when 'wfh' is set ":bel 10new" scrolls window
...
Problem: When 'wfh' is set ":bel 10new" scrolls window. (Andrew Pyatkov)
Solution: Set the fraction before changing the window height. (closes #2798 )
2018-04-13 22:15:46 +02:00
Bram Moolenaar
b59118d501
patch 8.0.1706: cannot sent CTRL-\ to a terminal window
...
Problem: Cannot sent CTRL-\ to a terminal window.
Solution: Make CTRL-W CTRL-\ send CTRL-\ to a terminal window.
2018-04-13 22:11:56 +02:00
Bram Moolenaar
5bab555c2f
patch 8.0.1705: when making a vertical split the mode message isn't updated
...
Problem: When making a vertical split the mode message isn't always
updated, "VISUAL" remains. (Alexei Averchenko)
Solution: Only reset clear_cmdline when filling all columns of the last
screen line. (Tom M. closes #2611 )
2018-04-13 20:41:29 +02:00
Bram Moolenaar
b8e22a053b
patch 8.0.1704: 'backupskip' default doesn't work for Mac
...
Problem: 'backupskip' default doesn't work for Mac.
Solution: Use "/private/tmp". (Rainer Müller, closes #2793 )
2018-04-12 21:37:34 +02:00
Bram Moolenaar
527dec3f94
patch 8.0.1703: in the tutor 'showcmd' is not set
...
Problem: In the tutor 'showcmd' is not set.
Solution: Set 'showcmd' in the vimtutor script. (Ken Takata, closes #2792 )
2018-04-12 20:36:43 +02:00
Bram Moolenaar
ee5b94a8ec
patch 8.0.1702: leaking memory when autocommands make quickfix list invalid
...
Problem: Leaking memory when autocommands make a quickfix list invalid.
Solution: Call FreeWild(). (Yegappan Lakshmanan)
2018-04-12 20:35:05 +02:00
Bram Moolenaar
cccd62d435
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
...
Problem: Can disable COLOR_EMOJI with MSVC but not MinGW.
Solution: Add COLOR_EMOJI flag. Also add some empty lines for readability.
2018-04-12 20:23:48 +02:00
Bram Moolenaar
56f9955044
patch 8.0.1700: coverage statistics still don't work on coveralls
...
Problem: Coverate statistics still don't work on coveralls.
Solution: Exclude the xxd directory again.
2018-04-12 20:06:05 +02:00
Bram Moolenaar
9ce4213b03
patch 8.0.1699: leftover stuff for Python 1.4
...
Problem: Leftover stuff for Python 1.4.
Solution: Remove outdated Python 1.4 stuff. (Naoki Inada, closes #2794 )
2018-04-11 22:19:36 +02:00
Bram Moolenaar
1ed00330bc
patch 8.0.1698: coverage statistics don't work on coveralls
...
Problem: Coverate statistics don't work on coveralls.
Solution: Use curly braces for $SRCDIR.
2018-04-11 21:03:08 +02:00
Bram Moolenaar
769e9d21ac
patch 8.0.1697: various tests are still a bit flaky
...
Problem: Various tests are still a bit flaky.
Solution: Increase the default wait time to five seconds.
2018-04-11 20:53:49 +02:00
Bram Moolenaar
d60e0a1d20
patch 8.0.1696: coverage statistics don't work
...
Problem: Coverate statistics don't work.
Solution: Include the xxd directory. (Christian Brabandt)
2018-04-11 10:06:04 +02:00
Bram Moolenaar
6995c0a7a9
patch 8.0.1695: xxd test not run on MS-Windows
...
Problem: Xxd test not run on MS-Windows.
Solution: Use xxd.exe if it exists.
2018-04-10 21:46:10 +02:00
Bram Moolenaar
b377457e69
patch 8.0.1694: terminal API test is a bit flaky
...
Problem: Terminal API test is a bit flaky.
Solution: Wait longer for Vim to stop.
2018-04-10 21:43:26 +02:00
Bram Moolenaar
1acdb3f301
patch 8.0.1693: xxd is excluded from coverage statistics
...
Problem: Xxd is excluded from coverage statistics.
Solution: Don't skip the xxd directory. (Christian Brabandt)
2018-04-10 21:16:32 +02:00
Bram Moolenaar
3a21d9c7bb
patch 8.0.1692: Python may not work when using statically linked library
...
Problem: Python may not work when using statically linked library .
Solution: Do not define PYTHON_HOME and PYTHON3_HOME in configure if the
Python library is linked statically.
2018-04-10 20:26:20 +02:00
Bram Moolenaar
164268d4cf
patch 8.0.1691: xxd test sometimes fails
...
Problem: Xxd test sometimes fails.
Solution: Wipe out the XXDfile buffer.
2018-04-10 20:06:17 +02:00
Bram Moolenaar
8dd1761e69
patch 8.0.1690: not easy to run one test with gvim instead of vim
...
Problem: Not easy to run one test with gvim instead of vim.
Solution: Add VIMTESTTARGET in Makefile.
2018-04-10 19:24:04 +02:00
Bram Moolenaar
29f9ed20b4
patch 8.0.1689: no tests for xxd
...
Problem: No tests for xxd.
Solution: Add a test. (Christian Brabandt)
2018-04-10 19:20:31 +02:00
Bram Moolenaar
6f4700233f
patch 8.0.1688: some macros are used without a semicolon
...
Problem: Some macros are used without a semicolon, causing auto-indent to be
wrong.
Solution: Use the do-while(0) trick. (Ozaki Kiichi, closes #2729 )
2018-04-10 18:47:20 +02:00
Bram Moolenaar
d6b4f2dd76
patch 8.0.1687: 64 bit compiler warnings
...
Problem: 64 bit compiler warnings.
Solution: change type, add type cast. (Mike Williams)
2018-04-10 18:26:27 +02:00
Bram Moolenaar
d088240b96
patch 8.0.1686: Python does not work when configuring with specific dir
...
Problem: Python does not work when configuring with specific dir. (Rajdeep)
Solution: Do define PYTHON_HOME and PYTHON3_HOME in configure if the Python
config dir was specified.
2018-04-10 18:13:05 +02:00
Bram Moolenaar
f59c6e8cee
patch 8.0.1685: can't set ANSI colors of a terminal window
...
Problem: Can't set ANSI colors of a terminal window.
Solution: Add term_setansicolors(), term_getansicolors() and
g:term_ansi_colors. (Andy Massimino, closes #2747 )
2018-04-10 15:59:11 +02:00
Bram Moolenaar
07b46af645
patch 8.0.1684: ml_get errors when using terminal window for shell command
...
Problem: ml_get errors when using terminal window for shell command.
(Blay263)
Solution: Do not change the size of the current window.
2018-04-10 14:56:18 +02:00
Bram Moolenaar
0424958bde
patch 8.0.1683: Python upgrade breaks Vim when defining PYTHON_HOME
...
Problem: Python upgrade breaks Vim when defining PYTHON_HOME.
Solution: Do not define PYTHON_HOME and PYTHON3_HOME in configure. (Naoki
Inada, closes #2787 )
2018-04-10 13:29:34 +02:00