comparison runtime/doc/usr_02.txt @ 10942:e05695e59f6d v8.0.0360

patch 8.0.0360: sometimes VimL is used instead of "Vim script" commit https://github.com/vim/vim/commit/b544f3c81f1e6a50322855681ac266ffaa8e313c Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 23 19:03:28 2017 +0100 patch 8.0.0360: sometimes VimL is used instead of "Vim script" Problem: Sometimes VimL is used, which is confusing. Solution: Consistently use "Vim script". (Hirohito Higashi)
author Christian Brabandt <cb@256bit.org>
date Thu, 23 Feb 2017 19:15:05 +0100
parents 9f48eab77d62
children 1218c5353e2b
comparison
equal deleted inserted replaced
10941:56b3c9414c82 10942:e05695e59f6d
587 587
588 12) Registers always start with "quote". To find out about the special ":" 588 12) Registers always start with "quote". To find out about the special ":"
589 register: > 589 register: >
590 :help quote: 590 :help quote:
591 591
592 13) Vim Script (VimL) is available at > 592 13) Vim script is available at >
593 :help eval.txt 593 :help eval.txt
594 < Certain aspects of the language are available at :h expr-X where "X" is a 594 < Certain aspects of the language are available at :h expr-X where "X" is a
595 single letter. E.g. > 595 single letter. E.g. >
596 :help expr-! 596 :help expr-!
597 < will take you to the topic describing the "!" (Not) operator for 597 < will take you to the topic describing the "!" (Not) operator for
598 VimScript. 598 VimScript.
599 Also important is > 599 Also important is >
600 :help function-list 600 :help function-list
601 < to find a short description of all functions available. Help topics for 601 < to find a short description of all functions available. Help topics for
602 VimL functions always include the "()", so: > 602 Vim script functions always include the "()", so: >
603 :help append() 603 :help append()
604 < talks about the append VimL function rather than how to append text in the 604 < talks about the append Vim script function rather than how to append text
605 current buffer. 605 in the current buffer.
606 606
607 14) Mappings are talked about in the help page :h |map.txt|. Use > 607 14) Mappings are talked about in the help page :h |map.txt|. Use >
608 :help mapmode-i 608 :help mapmode-i
609 < to find out about the |:imap| command. Also use :map-topic 609 < to find out about the |:imap| command. Also use :map-topic
610 to find out about certain subtopics particular for mappings. e.g: > 610 to find out about certain subtopics particular for mappings. e.g: >