comparison runtime/doc/usr_41.txt @ 11229:146a1e213b60

Update runtime files. Add Rust support. commit https://github.com/vim/vim/commit/3c2881dc1195f53ebafc387378399ddd6cb677a7 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 21 19:18:29 2017 +0100 Update runtime files. Add Rust support.
author Christian Brabandt <cb@256bit.org>
date Tue, 21 Mar 2017 19:30:06 +0100
parents d0a20101ecb2
children 214f228718cf
comparison
equal deleted inserted replaced
11228:641b98249145 11229:146a1e213b60
1 *usr_41.txt* For Vim version 8.0. Last change: 2017 Mar 09 1 *usr_41.txt* For Vim version 8.0. Last change: 2017 Mar 18
2 2
3 VIM USER MANUAL - by Bram Moolenaar 3 VIM USER MANUAL - by Bram Moolenaar
4 4
5 Write a Vim script 5 Write a Vim script
6 6
887 getwinposy() Y position of the GUI Vim window 887 getwinposy() Y position of the GUI Vim window
888 balloon_show() set the balloon content 888 balloon_show() set the balloon content
889 889
890 Vim server: *server-functions* 890 Vim server: *server-functions*
891 serverlist() return the list of server names 891 serverlist() return the list of server names
892 remote_startserve() run a server
892 remote_send() send command characters to a Vim server 893 remote_send() send command characters to a Vim server
893 remote_expr() evaluate an expression in a Vim server 894 remote_expr() evaluate an expression in a Vim server
894 server2client() send a reply to a client of a Vim server 895 server2client() send a reply to a client of a Vim server
895 remote_peek() check if there is a reply from a Vim server 896 remote_peek() check if there is a reply from a Vim server
896 remote_read() read a reply from a Vim server 897 remote_read() read a reply from a Vim server
918 assert_notmatch() assert that a pattern does not match the value 919 assert_notmatch() assert that a pattern does not match the value
919 assert_false() assert that an expression is false 920 assert_false() assert that an expression is false
920 assert_true() assert that an expression is true 921 assert_true() assert that an expression is true
921 assert_exception() assert that a command throws an exception 922 assert_exception() assert that a command throws an exception
922 assert_fails() assert that a function call fails 923 assert_fails() assert that a function call fails
924 assert_report() report a test failure
923 test_alloc_fail() make memory allocation fail 925 test_alloc_fail() make memory allocation fail
924 test_autochdir() enable 'autochdir' during startup 926 test_autochdir() enable 'autochdir' during startup
925 test_override() test with Vim internal overrides 927 test_override() test with Vim internal overrides
926 test_garbagecollect_now() free memory right now 928 test_garbagecollect_now() free memory right now
927 test_ignore_error() ignore a specific error message 929 test_ignore_error() ignore a specific error message