comparison runtime/doc/usr_41.txt @ 230:9281a51ca7a2

updated for version 7.0064
author vimboss
date Fri, 25 Mar 2005 21:53:48 +0000
parents 79c3648993c3
children a20218704019
comparison
equal deleted inserted replaced
229:723a01584c3e 230:9281a51ca7a2
1 *usr_41.txt* For Vim version 7.0aa. Last change: 2005 Mar 15 1 *usr_41.txt* For Vim version 7.0aa. Last change: 2005 Mar 25
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
721 getchar() get a character from the user 721 getchar() get a character from the user
722 getcharmod() get modifiers for the last typed character 722 getcharmod() get modifiers for the last typed character
723 input() get a line from the user 723 input() get a line from the user
724 inputsecret() get a line from the user without showing it 724 inputsecret() get a line from the user without showing it
725 inputdialog() get a line from the user in a dialog 725 inputdialog() get a line from the user in a dialog
726 inputresave save and clear typeahead 726 inputsave() save and clear typeahead
727 inputrestore() restore typeahead 727 inputrestore() restore typeahead
728 728
729 Vim server: 729 Vim server:
730 serverlist() return the list of server names 730 serverlist() return the list of server names
731 remote_send() send command characters to a Vim server 731 remote_send() send command characters to a Vim server
743 hasmapto() check if a mapping exists 743 hasmapto() check if a mapping exists
744 mapcheck() check if a matching mapping exists 744 mapcheck() check if a matching mapping exists
745 maparg() get rhs of a mapping 745 maparg() get rhs of a mapping
746 exists() check if a variable, function, etc. exists 746 exists() check if a variable, function, etc. exists
747 has() check if a feature is supported in Vim 747 has() check if a feature is supported in Vim
748 errorlist() list of quickfix errors 748 getqflist() list of quickfix errors
749 cscope_connection() check if a cscope connection exists 749 cscope_connection() check if a cscope connection exists
750 did_filetype() check if a FileType autocommand was used 750 did_filetype() check if a FileType autocommand was used
751 eventhandler() check if invoked by an event handler 751 eventhandler() check if invoked by an event handler
752 getwinposx() X position of the GUI Vim window 752 getwinposx() X position of the GUI Vim window
753 getwinposy() Y position of the GUI Vim window 753 getwinposy() Y position of the GUI Vim window
755 winwidth() get width of a specific window 755 winwidth() get width of a specific window
756 libcall() call a function in an external library 756 libcall() call a function in an external library
757 libcallnr() idem, returning a number 757 libcallnr() idem, returning a number
758 getreg() get contents of a register 758 getreg() get contents of a register
759 getregtype() get type of a register 759 getregtype() get type of a register
760 setqflist() create a quickfix list
760 setreg() set contents and type of a register 761 setreg() set contents and type of a register
761 taglist() get list of matching tags 762 taglist() get list of matching tags
762 763
763 ============================================================================== 764 ==============================================================================
764 *41.7* Defining a function 765 *41.7* Defining a function