comparison runtime/doc/eval.txt @ 15725:a3e2e7948ee4 v8.1.0870

patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10 commit https://github.com/vim/vim/commit/aa5df7e3127dff6b7336df0903f5c569a40eb174 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 3 14:53:10 2019 +0100 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10 Problem: Vim doesn't use the new ConPTY support in Windows 10. Solution: Use ConPTY support, if available. (Nobuhiro Takasaki, closes https://github.com/vim/vim/issues/3794)
author Bram Moolenaar <Bram@vim.org>
date Sun, 03 Feb 2019 15:00:08 +0100
parents 287104a1d51e
children fe57e4f0eac1
comparison
equal deleted inserted replaced
15724:c75264abac54 15725:a3e2e7948ee4
1 *eval.txt* For Vim version 8.1. Last change: 2019 Jan 29 1 *eval.txt* For Vim version 8.1. Last change: 2019 Feb 03
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
694 :let endblob = myblob[2:] " from item 2 to the end: 0z2233 694 :let endblob = myblob[2:] " from item 2 to the end: 0z2233
695 :let shortblob = myblob[2:2] " Blob with one byte: 0z22 695 :let shortblob = myblob[2:2] " Blob with one byte: 0z22
696 :let otherblob = myblob[:] " make a copy of the Blob 696 :let otherblob = myblob[:] " make a copy of the Blob
697 697
698 If the first index is beyond the last byte of the Blob or the second index is 698 If the first index is beyond the last byte of the Blob or the second index is
699 before the first index, the result is an empty list. There is no error 699 before the first index, the result is an empty Blob. There is no error
700 message. 700 message.
701 701
702 If the second index is equal to or greater than the length of the list the 702 If the second index is equal to or greater than the length of the list the
703 length minus one is used: > 703 length minus one is used: >
704 :echo myblob[2:8] " result: 0z2233 704 :echo myblob[2:8] " result: 0z2233
9467 use CTRL-Z or "exit()". For a shell use 9467 use CTRL-Z or "exit()". For a shell use
9468 "exit". A CR is always added. 9468 "exit". A CR is always added.
9469 "ansi_colors" A list of 16 color names or hex codes 9469 "ansi_colors" A list of 16 color names or hex codes
9470 defining the ANSI palette used in GUI 9470 defining the ANSI palette used in GUI
9471 color modes. See |g:terminal_ansi_colors|. 9471 color modes. See |g:terminal_ansi_colors|.
9472 "term_mode" (MS-Windows only): Specify which pty to
9473 use:
9474 "winpty": Use winpty
9475 "conpty": Use ConPTY (if available)
9472 9476
9473 {only available when compiled with the |+terminal| feature} 9477 {only available when compiled with the |+terminal| feature}
9474 9478
9475 term_wait({buf} [, {time}]) *term_wait()* 9479 term_wait({buf} [, {time}]) *term_wait()*
9476 Wait for pending updates of {buf} to be handled. 9480 Wait for pending updates of {buf} to be handled.
10184 cmdline_compl Compiled with |cmdline-completion| support. 10188 cmdline_compl Compiled with |cmdline-completion| support.
10185 cmdline_hist Compiled with |cmdline-history| support. 10189 cmdline_hist Compiled with |cmdline-history| support.
10186 cmdline_info Compiled with 'showcmd' and 'ruler' support. 10190 cmdline_info Compiled with 'showcmd' and 'ruler' support.
10187 comments Compiled with |'comments'| support. 10191 comments Compiled with |'comments'| support.
10188 compatible Compiled to be very Vi compatible. 10192 compatible Compiled to be very Vi compatible.
10193 conpty Platform where |ConPTY| can be used.
10189 cryptv Compiled with encryption support |encryption|. 10194 cryptv Compiled with encryption support |encryption|.
10190 cscope Compiled with |cscope| support. 10195 cscope Compiled with |cscope| support.
10191 cursorbind Compiled with |cursorbind| (always true) 10196 cursorbind Compiled with |cursorbind| (always true)
10192 debug Compiled with "DEBUG" defined. 10197 debug Compiled with "DEBUG" defined.
10193 dialog_con Compiled with console dialog support. 10198 dialog_con Compiled with console dialog support.