comparison runtime/doc/usr_41.txt @ 9464:be72f4201a1d

commit https://github.com/vim/vim/commit/063b9d15abea041a5bfff3ffc4e219e26fd1d4fa Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 9 20:21:48 2016 +0200 Updated runtime files.
author Christian Brabandt <cb@256bit.org>
date Sat, 09 Jul 2016 20:30:06 +0200
parents 1472ed67c36f
children 9f7bcc2c3b97
comparison
equal deleted inserted replaced
9463:78b611afcadb 9464:be72f4201a1d
1 *usr_41.txt* For Vim version 7.4. Last change: 2016 Jun 13 1 *usr_41.txt* For Vim version 7.4. Last change: 2016 Jul 09
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
609 iconv() convert text from one encoding to another 609 iconv() convert text from one encoding to another
610 byteidx() byte index of a character in a string 610 byteidx() byte index of a character in a string
611 byteidxcomp() like byteidx() but count composing characters 611 byteidxcomp() like byteidx() but count composing characters
612 repeat() repeat a string multiple times 612 repeat() repeat a string multiple times
613 eval() evaluate a string expression 613 eval() evaluate a string expression
614 execute() execute an Ex command and get the output
614 615
615 List manipulation: *list-functions* 616 List manipulation: *list-functions*
616 get() get an item without error for wrong index 617 get() get an item without error for wrong index
617 len() number of items in a List 618 len() number of items in a List
618 empty() check if List is empty 619 empty() check if List is empty
976 getregtype() get type of a register 977 getregtype() get type of a register
977 setreg() set contents and type of a register 978 setreg() set contents and type of a register
978 979
979 shiftwidth() effective value of 'shiftwidth' 980 shiftwidth() effective value of 'shiftwidth'
980 981
982 wordcount() get byte/word/char count of buffer
983
981 taglist() get list of matching tags 984 taglist() get list of matching tags
982 tagfiles() get a list of tags files 985 tagfiles() get a list of tags files
983 986
984 luaeval() evaluate Lua expression 987 luaeval() evaluate Lua expression
985 mzeval() evaluate |MzScheme| expression 988 mzeval() evaluate |MzScheme| expression
986 perleval() evaluate Perl expression (|+perl|) 989 perleval() evaluate Perl expression (|+perl|)
987 py3eval() evaluate Python expression (|+python3|) 990 py3eval() evaluate Python expression (|+python3|)
988 pyeval() evaluate Python expression (|+python|) 991 pyeval() evaluate Python expression (|+python|)
989 wordcount() get byte/word/char count of buffer
990 992
991 ============================================================================== 993 ==============================================================================
992 *41.7* Defining a function 994 *41.7* Defining a function
993 995
994 Vim enables you to define your own functions. The basic function declaration 996 Vim enables you to define your own functions. The basic function declaration