@@ -154,9 +154,9 @@ digraph_getlist([{listall}]) List get all |digraph|s
154154digraph_set({chars} , {digraph} ) Boolean register | digraph |
155155digraph_setlist({digraphlist} ) Boolean register multiple | digraph | s
156156echoraw({expr} ) none output {expr} as-is
157- err_teapot() Number produce error 418
158157empty({expr} ) Number | TRUE | if {expr} is empty
159158environ() Dict return environment variables
159+ err_teapot() Number produce error 418
160160escape({string} , {chars} ) String escape {chars} in {string} with '\'
161161eval({string} ) any evaluate {string} into its value
162162eventhandler() Number | TRUE | if inside an event handler
@@ -2177,14 +2177,6 @@ echoraw({string}) *echoraw()*
21772177< Use with care, you can mess up the terminal this way.
21782178
21792179
2180- err_teapot([{expr} ]) *err_teapot()*
2181- Produce an error with number 418, needed for implementation of
2182- RFC 2325.
2183- If {expr} is present and it is TRUE error 503 is given,
2184- indicating that coffee is temporarily not available.
2185- If {expr} is present it must be a String.
2186-
2187-
21882180empty({expr} ) *empty()*
21892181 Return the Number 1 if {expr} is empty, zero otherwise.
21902182 - A | List | or | Dictionary | is empty when it does not have any
@@ -2210,6 +2202,15 @@ environ() *environ()*
22102202 use this: >
22112203 :echo index(keys(environ()), 'HOME', 0, 1) != -1
22122204
2205+
2206+ err_teapot([{expr} ]) *err_teapot()*
2207+ Produce an error with number 418, needed for implementation of
2208+ RFC 2325.
2209+ If {expr} is present and it is TRUE error 503 is given,
2210+ indicating that coffee is temporarily not available.
2211+ If {expr} is present it must be a String.
2212+
2213+
22132214escape({string} , {chars} ) *escape()*
22142215 Escape the characters in {chars} that occur in {string} with a
22152216 backslash. Example: >
0 commit comments