mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-04-14 07:13:34 +02:00
New directory layout.
This commit is contained in:
85
vimperator/locale/en-US/eval.txt
Normal file
85
vimperator/locale/en-US/eval.txt
Normal file
@@ -0,0 +1,85 @@
|
||||
HEADER
|
||||
|
||||
|expression| |expr| |eval| +
|
||||
|
||||
INTRO TO BE WRITTEN...
|
||||
|
||||
|:ec| |:echo| +
|
||||
||:ec[ho] {expr}||
|
||||
________________________________________________________________________________
|
||||
Echo the expression. Useful for showing informational messages. Multiple lines
|
||||
can be separated by \n. {expr} can either be a quoted string, or any
|
||||
expression which can be fed to eval() like 4+5. You can also view the source
|
||||
code of objects and functions if the return value of {expr} is an object or
|
||||
function.
|
||||
________________________________________________________________________________
|
||||
|
||||
|
||||
|:echoe| |:echoerr|
|
||||
||:echoe[rr] {expr}|| +
|
||||
________________________________________________________________________________
|
||||
Echo the expression as an error message. Just like [c]:ec[ho][c], but echoes
|
||||
the result highlighted as ErrorMsg and saves it to the message history.
|
||||
________________________________________________________________________________
|
||||
|
||||
|
||||
|:echoe| |:echomsg|
|
||||
||:echom[sg] {expr}|| +
|
||||
________________________________________________________________________________
|
||||
Echo the expression as an infomational message. Just like [c]:ec[ho][c], but
|
||||
also saves the message in the the message history.
|
||||
________________________________________________________________________________
|
||||
|
||||
|
||||
|:exe| |:execute|
|
||||
||:exe[cute] {expr}|| +
|
||||
________________________________________________________________________________
|
||||
Execute the string that results from the evaluation of {expr} as an Ex command.
|
||||
Example: [c]:execute "source " + io.getRCFile().path[c] sources the appropriate
|
||||
RC file.
|
||||
|
||||
Note: Unlike Vim this currently only supports a single argument.
|
||||
________________________________________________________________________________
|
||||
|
||||
|
||||
|:js| |:javas| |:javascript|
|
||||
||:javas[cript] \\{cmd\\}|| +
|
||||
||:javascript <<\\{endpattern\\}\n\\{script\\}\n\\{endpattern\\}|| +
|
||||
||:javascript[!]||
|
||||
________________________________________________________________________________
|
||||
Run any JavaScript command through eval(). Acts as a JavaScript interpreter by
|
||||
passing the argument to `eval()`.
|
||||
[c]:javascript alert("Hello world")[c] shows a dialog box with the text "Hello world".
|
||||
[c]:javascript <<EOF[c] reads all the lines until a line starting with "EOF"
|
||||
is found, and interpret them with the JavaScript _eval()_ function.
|
||||
|
||||
The special version [c]:javascript![c] opens the JavaScript console of
|
||||
Firefox.
|
||||
|
||||
[m]<Tab>[m] completion is available for [c]:javascript {cmd}<Tab>[c] (but not
|
||||
yet for the [c]:js <<EOF[c] multiline widget). Be aware that Vimperator needs
|
||||
to run {cmd} through eval() to get the completions, which could have unwanted
|
||||
side effects.
|
||||
________________________________________________________________________________
|
||||
|
||||
// >> To make the syntax highlighting happy
|
||||
|
||||
|:let|
|
||||
||:let {var-name} [+-.]= {expr1}|| +
|
||||
||:let {var-name}|| +
|
||||
||:let||
|
||||
________________________________________________________________________________
|
||||
Sets or lists a variable. Sets the variable {var-name} to the value of the
|
||||
expression {expr1}. If no expression is given, the value of the variable is
|
||||
displayed.Without arguments, displays a list of all variables.
|
||||
________________________________________________________________________________
|
||||
|
||||
|
||||
|:unl| |:unlet|
|
||||
||:unl[et][!] {name} ...|| +
|
||||
________________________________________________________________________________
|
||||
Deletes the variable {name}. Several variable names can be given. When used
|
||||
with [!] no error message is output for non-existing variables.
|
||||
________________________________________________________________________________
|
||||
|
||||
// vim: set syntax=asciidoc:
|
||||
Reference in New Issue
Block a user