Re: Cursor not visible in :terminal with TERM=xterm?

2017-07-24 Fir de Conversatie Nazri Ramliy
On Tue, Jul 25, 2017 at 10:10 AM, Nazri Ramliy wrote: > Cursor visible: > > TERM=ansi vi -u NONE -U NONE -c :terminal > > Cursor not visible: > > TERM=xterm vi -u NONE -U NONE -c :terminal Sorry I forgot to include the details: $ uname -a Linux bear 3.13.0-125-generic #174-Ubuntu SMP Mon Jul 10

Cursor not visible in :terminal with TERM=xterm?

2017-07-24 Fir de Conversatie Nazri Ramliy
Hi, Cursor visible: TERM=ansi vi -u NONE -U NONE -c :terminal Cursor not visible: TERM=xterm vi -u NONE -U NONE -c :terminal help? nazri -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, v

Warning in Tiny buffer.c after patches 768 to 771

2017-07-24 Fir de Conversatie Tony Mechelynck
After applying patches 8.0.768 to 8.0.771, I get the following warning from gcc in the Tiny build (compile goes on, and link happens apparently satisfactorily): gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -fno-strength-reduce -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1-o objects/buffer.o bu

Patch 8.0.0771

2017-07-24 Fir de Conversatie Bram Moolenaar
Patch 8.0.0771 Problem:Cursor in a terminal window not always updated in the GUI. Solution: Call gui_update_cursor(). (Yasuhiro Matsumoto, closes #1868) Files: src/terminal.c *** ../vim-8.0.0770/src/terminal.c 2017-07-24 22:26:39.761774842 +0200 --- src/terminal.c 2017-07-24

Re: Warning message when building the libvterm/src/encoding.c file

2017-07-24 Fir de Conversatie Bram Moolenaar
Yegappan wrote: > Building the encoding.c file from libvterm with -Wextra produces the following > warning: > > libvterm/src/encoding.c:221:7: warning: missing field 'designation' > initializer > [-Wmissing-field-initializers] > { 0 }, > ^ > > Changing that line to the following

Re: Vim (Windows) reproducibly freezes

2017-07-24 Fir de Conversatie Bram Moolenaar
Sven Brueggemann wrote: > > Vim 8.0, MS-Windows 32-Bit GUI OLE Patches 1-586 (latest Binary release) > > > > after udating from 8.0 to the latest binary release, my vim reproducibly > > hangs > > as soon as I open a file already opened in another vim in a new > > instance of vim. I was able t

Patch 8.0.0770

2017-07-24 Fir de Conversatie Bram Moolenaar
Patch 8.0.0770 Problem:Compiler warning for missing field initializer. Solution: Add two more values. (Yegappan Lakshmanan) Files: src/libvterm/src/encoding.c *** ../vim-8.0.0769/src/libvterm/src/encoding.c 2017-07-07 11:53:29.519876497 +0200 --- src/libvterm/src/encoding.c 2017-07-2

Re: Patch 8.0.0756

2017-07-24 Fir de Conversatie tux.
Hmm... works partially. x86 builds fine, x64 fails with a number of undefined _vertm_ symbols... -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- Yo

Re: [patch] Fix some issues about the terminal feature

2017-07-24 Fir de Conversatie Bram Moolenaar
Ken Takata wrote: > I found some issues with the terminal feature (mainly on Windows): > > * Couldn't build with VC2010, because libvterm requires stdbool.h. > Reuse if_perl_msvc/stdbool.h for this. > (Maybe it's better to change the directory name "if_perl_msvc", but I didn't > do it this

Patch 8.0.0769

2017-07-24 Fir de Conversatie Bram Moolenaar
Patch 8.0.0769 Problem:Build problems with terminal on MS-Windows using MSVC. Solution: Remove stdbool.h dependency. Only use ScreenLinesUC when it was allocated. Fix typos. (Ken Takata) Files: src/libvterm/bin/vterm-ctrl.c, runtime/doc/terminal.txt, src/INSTALLp

Patch 8.0.0768

2017-07-24 Fir de Conversatie Bram Moolenaar
Patch 8.0.0768 Problem:Terminal window status shows "[Scratch]". Solution: Show "[Terminal]" when no title was set. (Yasuhiro Matsumoto) Store the terminal title that vterm sends and use it. Update the special buffer name. (closes #1869) Files: src/terminal.c,

Re: Patch 8.0.0755

2017-07-24 Fir de Conversatie Bram Moolenaar
Kazunobu Kuriyama wrote: > 2017-07-23 23:45 GMT+09:00 Bram Moolenaar : > > > > > Patch 8.0.0755 > > Problem:Terminal window does not have colors in the GUI. > > Solution: Lookup the GUI color. > > Files: src/terminal.c, src/syntax.c, src/proto/syntax.pro, > > src/term.c, > >

Patch 8.0.0767

2017-07-24 Fir de Conversatie Bram Moolenaar
Patch 8.0.0767 Problem:Build failure with Athena and Motif. Solution: Move local variable delcarations. (Kazunobu Kuriyama) Files: src/gui_x11.c *** ../vim-8.0.0766/src/gui_x11.c 2017-07-23 16:45:05.669761183 +0200 --- src/gui_x11.c 2017-07-24 20:11:05.841174798 +0200

Patch 8.0.0766

2017-07-24 Fir de Conversatie Bram Moolenaar
Patch 8.0.0766 Problem:Option test fails with +terminal feature. Solution: Fix using the right option when checking the value. Files: src/option.c *** ../vim-8.0.0765/src/option.c2017-07-23 22:56:56.196681386 +0200 --- src/option.c2017-07-24 19:54:28.716135625 +0200 **

Warning message when building the libvterm/src/encoding.c file

2017-07-24 Fir de Conversatie Yegappan Lakshmanan
Hi, Building the encoding.c file from libvterm with -Wextra produces the following warning: libvterm/src/encoding.c:221:7: warning: missing field 'designation' initializer [-Wmissing-field-initializers] { 0 }, ^ Changing that line to the following fixes the warning: { 0, 0, NULL }

[patch] Fix some issues about the terminal feature

2017-07-24 Fir de Conversatie Ken Takata
Hi, I found some issues with the terminal feature (mainly on Windows): * Couldn't build with VC2010, because libvterm requires stdbool.h. Reuse if_perl_msvc/stdbool.h for this. (Maybe it's better to change the directory name "if_perl_msvc", but I didn't do it this time.) * vterm.lib was no

Re: Vim (Windows) reproducibly freezes

2017-07-24 Fir de Conversatie Sven Brueggemann
Hello, Vim 8.0, MS-Windows 32-Bit GUI OLE Patches 1-586 (latest Binary release) after udating from 8.0 to the latest binary release, my vim reproducibly hangs > as soon as I open a file already opened in another vim in a new > instance of vim. I was able to narrow down the cause to a single li