]>
granicus.if.org Git - vim/log
Bram Moolenaar [Sat, 5 Aug 2017 14:33:56 +0000 (16:33 +0200)]
patch 8.0.0867: job and channel in a dict value not quoted
Problem: When using a job or channel value as a dict value, when turning it
into a string the quotes are missing.
Solution: Add quotes to the job and channel values. (Yasuhiro Matsumoto,
closes #1930)
Bram Moolenaar [Sat, 5 Aug 2017 13:16:32 +0000 (15:16 +0200)]
patch 8.0.0866: Solaris also doesn't have MIN and MAX
Problem: Solaris also doesn't have MIN and MAX.
Solution: Define MIN and MAX whenever they are not defined. (Ozaki Kiichi,
closes #1939)
Bram Moolenaar [Sat, 5 Aug 2017 13:02:05 +0000 (15:02 +0200)]
patch 8.0.0865: cannot build with channel but without terminal feature
Problem: Cannot build with channel but without terminal feature.
Solution: Add #ifdef
Bram Moolenaar [Sat, 5 Aug 2017 12:50:12 +0000 (14:50 +0200)]
patch 8.0.0864: cannot specify the name of a terminal
Problem: Cannot specify the name of a terminal.
Solution: Add the "term_name" option. (Yasuhiro Matsumoto, closes #1936)
Bram Moolenaar [Sat, 5 Aug 2017 12:10:48 +0000 (14:10 +0200)]
patch 8.0.0863: a remote command does not work in the terminal window
Problem: A remote command starting with CTRL-\ CTRL-N does not work in the
terminal window. (Christian J. Robinson)
Solution: Use CTRL-\ CTRL-N as a prefix or a Normal mode command.
Bram Moolenaar [Fri, 4 Aug 2017 20:56:39 +0000 (22:56 +0200)]
patch 8.0.0862: file size test fails on MS-Windows
Problem: File size test fails on MS-Windows.
Solution: Set fileformat after opening new buffer. Strip CR.
Bram Moolenaar [Fri, 4 Aug 2017 20:37:11 +0000 (22:37 +0200)]
patch 8.0.0861: still many old style tests
Problem: Still many old style tests.
Solution: Convert several tests to new style. (Yegappan Lakshmanan)
Bram Moolenaar [Fri, 4 Aug 2017 19:37:54 +0000 (21:37 +0200)]
patch 8.0.0860: side effects when channel appends to a buffer
Problem: There may be side effects when a channel appends to a buffer that
is not the current buffer.
Solution: Properly switch to another buffer before appending. (Yasuhiro
Matsumoto, closes #1926, closes #1937)
Bram Moolenaar [Fri, 4 Aug 2017 18:29:53 +0000 (20:29 +0200)]
patch 8.0.0859: NULL pointer access when term_free_vterm called twice
Problem: NULL pointer access when term_free_vterm called twice.
Solution: Return when tl_vterm is NULL. (Yasuhiro Matsumoto, closes #1934)
Bram Moolenaar [Thu, 3 Aug 2017 20:44:55 +0000 (22:44 +0200)]
patch 8.0.0858: can exit while a terminal is still running a job
Problem: Can exit while a terminal is still running a job.
Solution: Consider a buffer with a running job like a changed file.
Bram Moolenaar [Thu, 3 Aug 2017 19:08:05 +0000 (21:08 +0200)]
patch 8.0.0857: terminal test fails on MS-Windows
Problem: Terminal test fails on MS-Windows.
Solution: Sleep a fraction of a second.
Bram Moolenaar [Thu, 3 Aug 2017 18:59:29 +0000 (20:59 +0200)]
patch 8.0.0856: MS-Windows: terminal job doesn't take options
Problem: MS-Windows: terminal job doesn't take options.
Solution: Call job_set_options(). (Yasuhiro Matsumoto)
Bram Moolenaar [Thu, 3 Aug 2017 18:52:19 +0000 (20:52 +0200)]
patch 8.0.0855: MS-Windows: can't get tty name of terminal
Problem: MS-Windows: can't get tty name of terminal.
Solution: Use the winpty process number. (Yasuhiro Matsumoto, closes #1929)
Bram Moolenaar [Thu, 3 Aug 2017 18:44:48 +0000 (20:44 +0200)]
patch 8.0.0854: no redraw after terminal was closed
Problem: No redraw after terminal was closed.
Solution: Set typebuf_was_filled. (Yasuhiro Matsumoto, closes #1925, closes
#1924) Add function to check for messages even when input is
available.
Bram Moolenaar [Thu, 3 Aug 2017 17:22:36 +0000 (19:22 +0200)]
patch 8.0.0853: crash when running terminal with unknown command
Problem: Crash when running terminal with unknown command.
Solution: Check "term" not to be NULL. (Yasuhiro Matsumoto, closes #1932)
Bram Moolenaar [Thu, 3 Aug 2017 16:55:00 +0000 (18:55 +0200)]
patch 8.0.0852: MS-Windows: possible crash when giving a message on startup
Problem: MS-Windows: possible crash when giving a message on startup.
Solution: Initialize length. (Yasuhiro Matsumoto, closes #1931)
Bram Moolenaar [Thu, 3 Aug 2017 15:54:03 +0000 (17:54 +0200)]
patch 8.0.0851: 'smartindent' is used even when 'indentexpr' is set
Problem: 'smartindent' is used even when 'indentexpr' is set.
Solution: Ignore 'smartindent' when 'indentexpr' is set. (Hirohito Higashi)
Bram Moolenaar [Thu, 3 Aug 2017 15:37:48 +0000 (17:37 +0200)]
patch 8.0.0850: MS-Windows: error message while starting up may be broken
Problem: MS-Windows: Depending on the console encoding, an error message
that is given during startup may be broken.
Solution: Convert the message to the console codepage. (Yasuhiro Matsumoto,
closes #1927)
Bram Moolenaar [Thu, 3 Aug 2017 15:06:45 +0000 (17:06 +0200)]
patch 8.0.0849: crash when job exit callback wipes the terminal
Problem: Crash when job exit callback wipes the terminal.
Solution: Check for b_term to be NULL. (Yasuhiro Matsumoto, closes #1922)
Implement options for term_start() to be able to test.
Make term_wait() more reliable.
Bram Moolenaar [Thu, 3 Aug 2017 12:49:29 +0000 (14:49 +0200)]
patch 8.0.0848: using multiple ch_log functions is clumsy
Problem: Using multiple ch_log functions is clumsy.
Solution: Use variable arguments. (Ozaki Kiichi, closes #1919)
Bram Moolenaar [Thu, 3 Aug 2017 12:29:14 +0000 (14:29 +0200)]
patch 8.0.0847: :argadd without argument can't handle space in file name
Problem: :argadd without argument can't handle space in file name. (Harm te
Hennepe)
Solution: Escape the space. (Yasuhiro Matsumoto, closes #1917)
Bram Moolenaar [Thu, 3 Aug 2017 11:51:25 +0000 (13:51 +0200)]
patch 8.0.0846: cannot get the name of the pty of a job
Problem: Cannot get the name of the pty of a job.
Solution: Add the "tty" entry to the job info. (Ozaki Kiichi, closes #1920)
Add the term_gettty() function.
Bram Moolenaar [Thu, 3 Aug 2017 09:55:21 +0000 (11:55 +0200)]
patch 8.0.0845: MS-Windows: missing semicolon in terminal code
Problem: MS-Windows: missing semicolon in terminal code.
Solution: Add it. (Naruhiko Nishino, closes #1923)
Bram Moolenaar [Wed, 2 Aug 2017 21:18:25 +0000 (23:18 +0200)]
patch 8.0.0844: wrong function prototype because of missing static
Problem: Wrong function prototype because of missing static.
Solution: Add "static".
Bram Moolenaar [Wed, 2 Aug 2017 21:13:27 +0000 (23:13 +0200)]
patch 8.0.0843: MS-Windows: compiler warning for signed/unsigned
Problem: MS-Windows: compiler warning for signed/unsigned.
Solution: Add type cast. (Yasuhiro Matsumoto, closes #1912)
Bram Moolenaar [Wed, 2 Aug 2017 20:33:28 +0000 (22:33 +0200)]
patch 8.0.0842: using slave pty after closing it
Problem: Using slave pty after closing it.
Solution: Do the ioctl() before dup'ing it.
Bram Moolenaar [Wed, 2 Aug 2017 20:10:34 +0000 (22:10 +0200)]
patch 8.0.0841: term_getline() may cause a crash
Problem: term_getline() may cause a crash.
Solution: Check that the row is valid. (Hirohito Higashi)
Bram Moolenaar [Wed, 2 Aug 2017 20:07:12 +0000 (22:07 +0200)]
patch 8.0.0840: MS-Windows: fopen() and open() prototypes are wrong
Problem: MS-Windows: fopen() and open() prototypes do not match the ones in
the system header file. Can't build without FEAT_MBYTE.
Solution: Add "const". Move macro to after including protoo.h.
Bram Moolenaar [Tue, 1 Aug 2017 20:24:26 +0000 (22:24 +0200)]
patch 8.0.0839: cannot kill a job in a terminal with CTRL-C
Problem: Cannot kill a job in a terminal with CTRL-C.
Solution: Set the controlling tty and send SIGINT. (closes #1910)
Bram Moolenaar [Tue, 1 Aug 2017 19:44:33 +0000 (21:44 +0200)]
patch 8.0.0838: buffer hangs around whem terminal window is closed
Problem: Buffer hangs around whem terminal window is closed.
Solution: When the job has ended wipe out a terminal buffer when the window
is closed.
Bram Moolenaar [Tue, 1 Aug 2017 18:53:30 +0000 (20:53 +0200)]
patch 8.0.0837: signs can be drawn on top of console messages
Problem: Signs can be drawn on top of console messages.
Solution: don't redraw at a prompt or when scrolled up. (Christian Brabandt,
closes #1907)
Bram Moolenaar [Tue, 1 Aug 2017 18:44:53 +0000 (20:44 +0200)]
Updated runtime files
Bram Moolenaar [Tue, 1 Aug 2017 18:25:22 +0000 (20:25 +0200)]
patch 8.0.0836: can abandon a terminal buffer after making a change
Problem: When a terminal buffer is changed it can still be accidentally
abandoned.
Solution: When making a change reset the 'buftype' option.
Bram Moolenaar [Tue, 1 Aug 2017 16:52:55 +0000 (18:52 +0200)]
patch 8.0.0835: translations check with msgfmt does not work
Problem: Translations check with msgfmt does not work.
Solution: Add a space before the file name.
Bram Moolenaar [Tue, 1 Aug 2017 16:44:29 +0000 (18:44 +0200)]
patch 8.0.0834: can't build without the client-server feature
Problem: Can't build without the client-server feature.
Solution: Add #ifdef.
Bram Moolenaar [Tue, 1 Aug 2017 16:41:21 +0000 (18:41 +0200)]
patch 8.0.0833: terminal test fails
Problem: Terminal test fails.
Solution: Update the row argument to one based.
Bram Moolenaar [Tue, 1 Aug 2017 16:35:38 +0000 (18:35 +0200)]
patch 8.0.0832: terminal function arguments are not consistent
Problem: Terminal function arguments are not consistent.
Solution: Use one-based instead of zero-based rows and cols. Use "." for
the current row.
Bram Moolenaar [Tue, 1 Aug 2017 16:04:04 +0000 (18:04 +0200)]
patch 8.0.0831: with 8 colors the bold attribute is not set properly
Problem: With 8 colors the bold attribute is not set properly.
Solution: Move setting HL_TABLE() out of lookup_color. (closes #1901)
Bram Moolenaar [Tue, 1 Aug 2017 15:40:23 +0000 (17:40 +0200)]
patch 8.0.0830: translating messages is not ideal
Problem: Translating messages is not ideal.
Solution: Add a remark about obsolete messages. Use msgfmt in the check
script. (Christian Brabandt)
Bram Moolenaar [Tue, 1 Aug 2017 15:14:21 +0000 (17:14 +0200)]
patch 8.0.0829: job running in terminal can't communicate with Vim
Problem: A job running in a terminal window cannot easily communicate with
the Vim it is running in.
Solution: Pass v:servername in an environment variable. (closes #1908)
Bram Moolenaar [Tue, 1 Aug 2017 13:14:26 +0000 (15:14 +0200)]
patch 8.0.0828: Coverity: may dereference NULL pointer
Problem: Coverity: may dereference NULL pointer.
Solution: Bail out if calloc_state() returns NULL.
Bram Moolenaar [Tue, 1 Aug 2017 13:08:07 +0000 (15:08 +0200)]
patch 8.0.0827: Coverity: could leak pty file descriptor
Problem: Coverity: could leak pty file descriptor, theoretically.
Solution: If channel is NULL, free the file descriptors.
Bram Moolenaar [Mon, 31 Jul 2017 20:56:24 +0000 (22:56 +0200)]
patch 8.0.0826: cannot use text objects in Terminal mode
Problem: Cannot use text objects in Terminal mode.
Solution: Check for pending operator and Visual mode first. (Yasuhiro
Matsumoto, closes #1906)
Bram Moolenaar [Mon, 31 Jul 2017 20:29:35 +0000 (22:29 +0200)]
patch 8.0.0825: not easy to see that a window is a terminal window
Problem: Not easy to see that a window is a terminal window.
Solution: Add StatusLineTerm highlighting.
Bram Moolenaar [Mon, 31 Jul 2017 19:18:58 +0000 (21:18 +0200)]
patch 8.0.0824: in Terminal mode the cursor and screen gets redrawn
Problem: In Terminal mode the cursor and screen gets redrawn when the job
produces output.
Solution: Check for tl_terminal_mode. (partly by Yasuhiro Matsumoto, closes
#1904)
Bram Moolenaar [Sun, 30 Jul 2017 19:46:04 +0000 (21:46 +0200)]
patch 8.0.0823: cannot paste text into a terminal window
Problem: Cannot paste text into a terminal window.
Solution: Make CTRL-W " work.
Bram Moolenaar [Sun, 30 Jul 2017 19:37:58 +0000 (21:37 +0200)]
patch 8.0.0822: Test_with_partial_callback is a tiny bit flaky
Problem: Test_with_partial_callback is a tiny bit flaky.
Solution: Add it to the list of flaky tests.
Bram Moolenaar [Sun, 30 Jul 2017 17:38:21 +0000 (19:38 +0200)]
patch 8.0.0821: cannot get the title and status of a terminal window
Problem: Cannot get the title and status of a terminal window.
Solution: Implement term_gettitle() and term_getstatus().
Bram Moolenaar [Sun, 30 Jul 2017 17:02:02 +0000 (19:02 +0200)]
patch 8.0.0820: GUI: cursor in terminal window lags behind
Problem: GUI: cursor in terminal window lags behind.
Solution: call gui_update_cursor() under different conditions. (Ozaki
Kiichi, closes #1893)
Bram Moolenaar [Sun, 30 Jul 2017 16:47:19 +0000 (18:47 +0200)]
patch 8.0.0819: cursor not positioned in terminal window
Problem: After changing current window the cursor position in the terminal
window is not updated.
Solution: Set w_wrow, w_wcol and w_valid.
Bram Moolenaar [Sun, 30 Jul 2017 16:28:38 +0000 (18:28 +0200)]
patch 8.0.0818: cannot get the cursor position of a terminal
Problem: Cannot get the cursor position of a terminal.
Solution: Add term_getcursor().
Bram Moolenaar [Sun, 30 Jul 2017 16:19:46 +0000 (18:19 +0200)]
patch 8.0.0817: cannot get the terminal line at the cursor
Problem: Cannot get the line of a terminal window at the cursor.
Solution: Make the row argunt optionsl. (Yasuhiro Matsumoto, closes #1898)
Bram Moolenaar [Sun, 30 Jul 2017 16:02:12 +0000 (18:02 +0200)]
patch 8.0.0816: crash when using invalid buffer number
Problem: Crash when using invalid buffer number.
Solution: Check for NULL buffer. (Yasuhiro Matsumoto, closes #1899)
Bram Moolenaar [Sun, 30 Jul 2017 15:45:37 +0000 (17:45 +0200)]
patch 8.0.0815: terminal window not correctly updated
Problem: Terminal window not correctly updated when 'statusline' invokes
":sleep". (NIkolay Pavlov)
Solution: Clear got_int. Repeat redrawing when needed.
Bram Moolenaar [Sun, 30 Jul 2017 14:58:56 +0000 (16:58 +0200)]
patch 8.0.0814: file in Filelist does not exist
Problem: File in Filelist does not exist.
Solution: Remove the line.
Bram Moolenaar [Sun, 30 Jul 2017 14:52:24 +0000 (16:52 +0200)]
patch 8.0.0813: cannot use a terminal window while the job is running
Problem: Cannot use Vim commands in a terminal window while the job is
running.
Solution: Implement Terminal Normal mode.
Bram Moolenaar [Sun, 30 Jul 2017 11:57:41 +0000 (13:57 +0200)]
patch 8.0.0812: terminal window colors shift when 'number' is set
Problem: Terminal window colors shift when 'number' is set. (Nazri Ramliy)
Solution: Use vcol instead of col.
Bram Moolenaar [Sun, 30 Jul 2017 11:51:37 +0000 (13:51 +0200)]
patch 8.0.0811: MS-Windows: test_expand_dllpath fails
Problem: MS-Windows: test_expand_dllpath fails.
Solution: Change backslashes to forward slashes
Bram Moolenaar [Sun, 30 Jul 2017 11:28:23 +0000 (13:28 +0200)]
patch 8.0.0810: MS-Windows: tests still hang
Problem: MS-Windows: tests still hang.
Solution: Only create the XfakeHOME directory if it does not exist yet.
Bram Moolenaar [Sat, 29 Jul 2017 21:01:57 +0000 (23:01 +0200)]
patch 8.0.0809: MS-Windows: tests hang
Problem: MS-Windows: tests hang.
Solution: Delete the XfakeHOME directory.
Bram Moolenaar [Sat, 29 Jul 2017 20:41:18 +0000 (22:41 +0200)]
patch 8.0.0808: cannot build with terminal feature and DEBUG defined
Problem: Cannot build with terminal feature and DEBUG defined. (Christian
Brabandt)
Solution: Use DEBUG_LOG3().
Bram Moolenaar [Sat, 29 Jul 2017 20:23:40 +0000 (22:23 +0200)]
patch 8.0.0807: terminal window can't handle mouse buttons
Problem: Terminal window can't handle mouse buttons. (Hirohito Higashi)
Solution: Implement mouse buttons and many other keys. Ignore the ones that
are not implemented.
Bram Moolenaar [Sat, 29 Jul 2017 20:21:18 +0000 (22:21 +0200)]
patch 8.0.0806: tests may try to create XfakeHOME twice
Problem: Tests may try to create XfakeHOME twice.
Solution: Avoid loading setup.vim twice.
Bram Moolenaar [Sat, 29 Jul 2017 18:39:53 +0000 (20:39 +0200)]
patch 8.0.0805: GUI test fails with gnome2
Problem: GUI test fails with gnome2.
Solution: Set $HOME to an existing directory.
Bram Moolenaar [Sat, 29 Jul 2017 18:16:03 +0000 (20:16 +0200)]
patch 8.0.0804: running tests fails when stdin is /dev/null
Problem: Running tests fails when stdin is /dev/null. (James McCoy)
Solution: Do not bail out from getting input if the --not-a-term argument
was given. (closes #1460)
Bram Moolenaar [Sat, 29 Jul 2017 18:15:08 +0000 (20:15 +0200)]
patch 8.0.0804: terminal window functions not yet implemented
Problem: Terminal window functions not yet implemented.
Solution: Implement several functions. Add a first test. (Yasuhiro
Matsumoto, closes #1871)
Bram Moolenaar [Sat, 29 Jul 2017 14:01:53 +0000 (16:01 +0200)]
patch 8.0.0802: last line of terminal window has no color
Problem: After a job exits the last line in the terminal window does not
get color attributes.
Solution: Fix off-by-one error.
Bram Moolenaar [Sat, 29 Jul 2017 13:53:39 +0000 (15:53 +0200)]
patch 8.0.0801: terminal window title says "running" after job exits
Problem: The terminal window title sometimes still says "running" even
though the job has finished.
Solution: Also consider the job finished when the channel has been closed.
Bram Moolenaar [Sat, 29 Jul 2017 12:52:43 +0000 (14:52 +0200)]
patch 8.0.0800
Problem: Terminal window scrollback contents is wrong.
Solution: Fix handling of multi-byte characters (Yasuhiro Matsumoto) Handle
empty lines correctly. (closes #1891)
Bram Moolenaar [Fri, 28 Jul 2017 21:16:13 +0000 (23:16 +0200)]
patch 8.0.0799: missing semicolon
Problem: Missing semicolon.
Solution: Add it.
Bram Moolenaar [Fri, 28 Jul 2017 20:29:35 +0000 (22:29 +0200)]
patch 8.0.0798: no highlighting in a terminal window with a finished job
Problem: No highlighting in a terminal window with a finished job.
Solution: Highlight the text.
Bram Moolenaar [Fri, 28 Jul 2017 19:51:57 +0000 (21:51 +0200)]
patch 8.0.0797: finished job in terminal window is not handled
Problem: Finished job in terminal window is not handled.
Solution: Add the scrollback buffer. Use it to fill the buffer when the job
has ended.
Bram Moolenaar [Fri, 28 Jul 2017 16:01:58 +0000 (18:01 +0200)]
patch 8.0.0796: no coverage on Travis with clang
Problem: No coverage on Travis with clang.
Solution: Use a specific coveralls version. (Ozaki Kiichi, closes #1888)
Bram Moolenaar [Fri, 28 Jul 2017 15:04:15 +0000 (17:04 +0200)]
patch 8.0.0795: terminal feature does not build with older MSVC
Problem: Terminal feature does not build with older MSVC.
Solution: Do not use stdint.h.
Bram Moolenaar [Fri, 28 Jul 2017 14:46:57 +0000 (16:46 +0200)]
patch 8.0.0794: checking translations fails with multiple NL
Problem: The script to check translations fails if there is more than one
NL in one line.
Solution: Count the number of NL characters. Make count() accept a string.
Bram Moolenaar [Fri, 28 Jul 2017 13:55:32 +0000 (15:55 +0200)]
patch 8.0.0793: using wrong terminal name for terminal window
Problem: Using wrong terminal name for terminal window.
Solution: When 'term' starts with "xterm" use it for $TERM in a terminal
window.
Bram Moolenaar [Fri, 28 Jul 2017 13:38:10 +0000 (15:38 +0200)]
patch 8.0.0792: spell test leaves files behind
Problem: Spell test leaves files behind.
Solution: Delete the files.
Bram Moolenaar [Fri, 28 Jul 2017 13:11:38 +0000 (15:11 +0200)]
patch 8.0.0791: terminal colors depend on the system
Problem: Terminal colors depend on the system.
Solution: Use the highlight color lookup tables.
Bram Moolenaar [Fri, 28 Jul 2017 12:19:19 +0000 (14:19 +0200)]
patch 8.0.0790: MSVC compiler warning for strncpy in libvterm
Problem: MSVC compiler warning for strncpy in libvterm.
Solution: Add a define to stop the warnings. (Mike Williams)
Bram Moolenaar [Fri, 28 Jul 2017 12:17:34 +0000 (14:17 +0200)]
patch 8.0.0789: splitting terminal window has resizing problems
Problem: When splitting a terminal window where the terminal follows the
size of the window doesn't work.
Solution: Use the size of the smallest window. (Yasuhiro Matsumoto, closes
#1885)
Bram Moolenaar [Fri, 28 Jul 2017 11:51:30 +0000 (13:51 +0200)]
patch 8.0.0788: MS-Windows: cannot build with terminal feature
Problem: MS-Windows: cannot build with terminal feature.
Solution: Move set_ref_in_term(). (Ozaki Kiichi)
Bram Moolenaar [Fri, 28 Jul 2017 11:48:34 +0000 (13:48 +0200)]
patch 8.0.0787: cannot send CTRL-W command to terminal job
Problem: Cannot send CTRL-W command to terminal job.
Solution: Make CTRL-W . a prefex for sending a key to the job.
Bram Moolenaar [Fri, 28 Jul 2017 11:45:16 +0000 (13:45 +0200)]
patch 8.0.0786: build failures on Travis
Problem: Build failures on Travis.
Solution: Go back to precise termporarily. Disable coverage with clang.
Bram Moolenaar [Fri, 28 Jul 2017 11:41:22 +0000 (13:41 +0200)]
Do not run coverage with clang, currently fails.
Bram Moolenaar [Fri, 28 Jul 2017 11:12:19 +0000 (13:12 +0200)]
Do not invoke rvm reset
Bram Moolenaar [Fri, 28 Jul 2017 10:45:40 +0000 (12:45 +0200)]
Remove ruby-dev from travis config.
Bram Moolenaar [Fri, 28 Jul 2017 10:22:55 +0000 (12:22 +0200)]
Switch travis back to precise temporarily
Bram Moolenaar [Thu, 27 Jul 2017 20:57:00 +0000 (22:57 +0200)]
patch 8.0.0785: wildcards are not expanded for :terminal
Problem: Wildcards are not expanded for :terminal.
Solution: Add FILES to the command flags. (Yasuhiro Matsumoto, closes #1883)
Also complete commands.
Bram Moolenaar [Thu, 27 Jul 2017 20:14:59 +0000 (22:14 +0200)]
patch 8.0.0784: job of terminal may be garbage collected
Problem: Job of terminal may be garbage collected.
Solution: Set copyID on job in terminal. (Ozaki Kiichi)
Bram Moolenaar [Thu, 27 Jul 2017 20:07:35 +0000 (22:07 +0200)]
patch 8.0.0783: job of terminal may be freed too early
Problem: Job of terminal may be freed too early.
Solution: Increment job refcount. (Yasuhiro Matsumoto)
Bram Moolenaar [Thu, 27 Jul 2017 20:03:50 +0000 (22:03 +0200)]
patch 8.0.0782: using freed memory in quickfix code
Problem: Using freed memory in quickfix code. (Dominique Pelle)
Solution: Handle a help window differently. (Yegappan Lakshmanan)
Bram Moolenaar [Thu, 27 Jul 2017 19:46:43 +0000 (21:46 +0200)]
patch 8.0.0781: MS-Windows: memory leak when using :terminal
Problem: MS-Windows: Memory leak when using :terminal.
Solution: Handle failures properly. (Ken Takata)
Bram Moolenaar [Thu, 27 Jul 2017 19:29:31 +0000 (21:29 +0200)]
patch 8.0.0780: build failure on Travis
Problem: Build failure on Travis.
Solution: Set distribution explicitly. Use Lua and Ruby dev. (Ken Takata,
closes #1884)
Bram Moolenaar [Wed, 26 Jul 2017 21:11:01 +0000 (23:11 +0200)]
patch 8.0.0779: :term without an argument uses empty buffer name
Problem: :term without an argument uses empty buffer name but runs the
snell.
Solution: Change the command to the shell earlier.
Bram Moolenaar [Wed, 26 Jul 2017 19:49:37 +0000 (21:49 +0200)]
patch 8.0.0778: in a terminal the cursor may be hidden
Problem: In a terminal the cursor may be hidden and screen updating lags
behind. (Nazri Ramliy)
Solution: Switch the cursor on and flush output when needed. (Ozaki Kiichi)
Bram Moolenaar [Wed, 26 Jul 2017 19:29:34 +0000 (21:29 +0200)]
patch 8.0.0777: compiler warnings with 64 bit compiler
Problem: Compiler warnings with 64 bit compiler.
Solution: Add type casts. (Mike Williams)
Bram Moolenaar [Tue, 25 Jul 2017 21:31:12 +0000 (23:31 +0200)]
patch 8.0.0776: function prototypes missing without the quickfix feature
Problem: Function prototypes missing without the quickfix feature. (Tony
Mechelynck)
Solution: Move non-quickfix functions to buffer.c.
Bram Moolenaar [Tue, 25 Jul 2017 21:08:47 +0000 (23:08 +0200)]
patch 8.0.0775: in a terminal the cursor is updated too often
Problem: In a terminal the cursor is updated too often.
Solution: Only flush when needed. (Yasuhiro Matsumoto). Remeber whether the
cursor is visible. (closes #1873)
Bram Moolenaar [Tue, 25 Jul 2017 20:06:43 +0000 (22:06 +0200)]
patch 8.0.0774: build failure without the multi-byte feature
Problem: Build failure without the multi-byte feature on HPUX.
Solution: Move #ifdefs. (John Marriott)
Bram Moolenaar [Tue, 25 Jul 2017 19:49:35 +0000 (21:49 +0200)]
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Problem: Mixing 32 and 64 bit libvterm builds fails.
Solution: Use OUTDIR. (Ken Takata)