Christian Brabandt | b4ddc6c | 2024-01-02 16:51:11 +0100 | [diff] [blame] | 1 | *if_lua.txt* For Vim version 9.1. Last change: 2021 Aug 06 |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 2 | |
| 3 | |
| 4 | VIM REFERENCE MANUAL by Luis Carvalho |
| 5 | |
| 6 | |
| 7 | The Lua Interface to Vim *lua* *Lua* |
| 8 | |
| 9 | 1. Commands |lua-commands| |
| 10 | 2. The vim module |lua-vim| |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 11 | 3. List userdata |lua-list| |
| 12 | 4. Dict userdata |lua-dict| |
Bram Moolenaar | b782869 | 2019-03-23 13:57:02 +0100 | [diff] [blame] | 13 | 5. Blob userdata |lua-blob| |
| 14 | 6. Funcref userdata |lua-funcref| |
| 15 | 7. Buffer userdata |lua-buffer| |
| 16 | 8. Window userdata |lua-window| |
| 17 | 9. luaeval() Vim function |lua-luaeval| |
| 18 | 10. Dynamic loading |lua-dynamic| |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 19 | |
Bram Moolenaar | 25c9c68 | 2019-05-05 18:13:34 +0200 | [diff] [blame] | 20 | {only available when Vim was compiled with the |+lua| feature} |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 21 | |
| 22 | ============================================================================== |
| 23 | 1. Commands *lua-commands* |
| 24 | |
| 25 | *:lua* |
| 26 | :[range]lua {chunk} |
Bram Moolenaar | 25c9c68 | 2019-05-05 18:13:34 +0200 | [diff] [blame] | 27 | Execute Lua chunk {chunk}. |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 28 | |
| 29 | Examples: |
| 30 | > |
| 31 | :lua print("Hello, Vim!") |
| 32 | :lua local curbuf = vim.buffer() curbuf[7] = "line #7" |
| 33 | < |
| 34 | |
Bram Moolenaar | 6c2b7b8 | 2020-04-14 20:15:49 +0200 | [diff] [blame] | 35 | :[range]lua << [trim] [{endmarker}] |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 36 | {script} |
| 37 | {endmarker} |
Bram Moolenaar | 25c9c68 | 2019-05-05 18:13:34 +0200 | [diff] [blame] | 38 | Execute Lua script {script}. |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 39 | Note: This command doesn't work when the Lua |
| 40 | feature wasn't compiled in. To avoid errors, see |
| 41 | |script-here|. |
| 42 | |
Bram Moolenaar | 5477506 | 2019-07-31 21:07:14 +0200 | [diff] [blame] | 43 | If [endmarker] is omitted from after the "<<", a dot '.' must be used after |
Bram Moolenaar | 6c2b7b8 | 2020-04-14 20:15:49 +0200 | [diff] [blame] | 44 | {script}, like for the |:append| and |:insert| commands. Refer to |
| 45 | |:let-heredoc| for more information. |
Bram Moolenaar | 5477506 | 2019-07-31 21:07:14 +0200 | [diff] [blame] | 46 | |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 47 | This form of the |:lua| command is mainly useful for including Lua code |
| 48 | in Vim scripts. |
| 49 | |
| 50 | Example: |
| 51 | > |
| 52 | function! CurrentLineInfo() |
| 53 | lua << EOF |
| 54 | local linenr = vim.window().line |
| 55 | local curline = vim.buffer()[linenr] |
| 56 | print(string.format("Current line [%d] has %d chars", |
| 57 | linenr, #curline)) |
| 58 | EOF |
| 59 | endfunction |
| 60 | < |
Bram Moolenaar | abd468e | 2016-09-08 22:22:43 +0200 | [diff] [blame] | 61 | To see what version of Lua you have: > |
| 62 | :lua print(_VERSION) |
| 63 | |
| 64 | If you use LuaJIT you can also use this: > |
| 65 | :lua print(jit.version) |
| 66 | < |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 67 | |
| 68 | *:luado* |
Bram Moolenaar | 53bfca2 | 2012-04-13 23:04:47 +0200 | [diff] [blame] | 69 | :[range]luado {body} Execute Lua function "function (line, linenr) {body} |
| 70 | end" for each line in the [range], with the function |
| 71 | argument being set to the text of each line in turn, |
| 72 | without a trailing <EOL>, and the current line number. |
| 73 | If the value returned by the function is a string it |
| 74 | becomes the text of the line in the current turn. The |
| 75 | default for [range] is the whole file: "1,$". |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 76 | |
| 77 | Examples: |
| 78 | > |
| 79 | :luado return string.format("%s\t%d", line:reverse(), #line) |
| 80 | |
| 81 | :lua require"lpeg" |
| 82 | :lua -- balanced parenthesis grammar: |
| 83 | :lua bp = lpeg.P{ "(" * ((1 - lpeg.S"()") + lpeg.V(1))^0 * ")" } |
| 84 | :luado if bp:match(line) then return "-->\t" .. line end |
| 85 | < |
| 86 | |
| 87 | *:luafile* |
| 88 | :[range]luafile {file} |
Bram Moolenaar | 25c9c68 | 2019-05-05 18:13:34 +0200 | [diff] [blame] | 89 | Execute Lua script in {file}. |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 90 | The whole argument is used as a single file name. |
| 91 | |
| 92 | Examples: |
| 93 | > |
| 94 | :luafile script.lua |
| 95 | :luafile % |
| 96 | < |
| 97 | |
| 98 | All these commands execute a Lua chunk from either the command line (:lua and |
| 99 | :luado) or a file (:luafile) with the given line [range]. Similarly to the Lua |
| 100 | interpreter, each chunk has its own scope and so only global variables are |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 101 | shared between command calls. All Lua default libraries are available. In |
| 102 | addition, Lua "print" function has its output redirected to the Vim message |
| 103 | area, with arguments separated by a white space instead of a tab. |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 104 | |
Bram Moolenaar | 9855d6b | 2010-07-18 14:34:51 +0200 | [diff] [blame] | 105 | Lua uses the "vim" module (see |lua-vim|) to issue commands to Vim |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 106 | and manage buffers (|lua-buffer|) and windows (|lua-window|). However, |
| 107 | procedures that alter buffer content, open new buffers, and change cursor |
Bram Moolenaar | 9855d6b | 2010-07-18 14:34:51 +0200 | [diff] [blame] | 108 | position are restricted when the command is executed in the |sandbox|. |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 109 | |
| 110 | |
| 111 | ============================================================================== |
| 112 | 2. The vim module *lua-vim* |
| 113 | |
| 114 | Lua interfaces Vim through the "vim" module. The first and last line of the |
Bram Moolenaar | 2334b6d | 2010-07-22 21:32:16 +0200 | [diff] [blame] | 115 | input range are stored in "vim.firstline" and "vim.lastline" respectively. The |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 116 | module also includes routines for buffer, window, and current line queries, |
| 117 | Vim evaluation and command execution, and others. |
| 118 | |
Bram Moolenaar | 52b91d8 | 2013-06-15 21:39:51 +0200 | [diff] [blame] | 119 | vim.list([arg]) Returns an empty list or, if "arg" is a Lua |
| 120 | table with numeric keys 1, ..., n (a |
| 121 | "sequence"), returns a list l such that l[i] = |
| 122 | arg[i] for i = 1, ..., n (see |List|). |
| 123 | Non-numeric keys are not used to initialize |
| 124 | the list. See also |lua-eval| for conversion |
| 125 | rules. Example: > |
Bram Moolenaar | fd35811 | 2018-07-07 23:21:31 +0200 | [diff] [blame] | 126 | :lua t = {math.pi, false, say = 'hi'} |
| 127 | :echo luaeval('vim.list(t)') |
| 128 | :" [3.141593, v:false], 'say' is ignored |
Bram Moolenaar | 52b91d8 | 2013-06-15 21:39:51 +0200 | [diff] [blame] | 129 | < |
| 130 | vim.dict([arg]) Returns an empty dictionary or, if "arg" is a |
| 131 | Lua table, returns a dict d such that d[k] = |
| 132 | arg[k] for all string keys k in "arg" (see |
| 133 | |Dictionary|). Number keys are converted to |
| 134 | strings. Keys that are not strings are not |
| 135 | used to initialize the dictionary. See also |
| 136 | |lua-eval| for conversion rules. Example: > |
Bram Moolenaar | fd35811 | 2018-07-07 23:21:31 +0200 | [diff] [blame] | 137 | :lua t = {math.pi, false, say = 'hi'} |
| 138 | :echo luaeval('vim.dict(t)') |
| 139 | :" {'1': 3.141593, '2': v:false, |
| 140 | :" 'say': 'hi'} |
Bram Moolenaar | 52b91d8 | 2013-06-15 21:39:51 +0200 | [diff] [blame] | 141 | < |
Bram Moolenaar | b782869 | 2019-03-23 13:57:02 +0100 | [diff] [blame] | 142 | vim.blob([arg]) Returns an empty blob or, if "arg" is a Lua |
| 143 | string, returns a blob b such that b is |
| 144 | equivalent to "arg" as a byte string. |
| 145 | Examples: > |
| 146 | :lua s = "12ab\x00\x80\xfe\xff" |
| 147 | :echo luaeval('vim.blob(s)') |
| 148 | :" 0z31326162.0080FEFF |
| 149 | < |
Bram Moolenaar | 52b91d8 | 2013-06-15 21:39:51 +0200 | [diff] [blame] | 150 | vim.funcref({name}) Returns a Funcref to function {name} (see |
Bram Moolenaar | fd35811 | 2018-07-07 23:21:31 +0200 | [diff] [blame] | 151 | |Funcref|). It is equivalent to Vim's |
| 152 | function(). |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 153 | |
Bram Moolenaar | 2334b6d | 2010-07-22 21:32:16 +0200 | [diff] [blame] | 154 | vim.buffer([arg]) If "arg" is a number, returns buffer with |
| 155 | number "arg" in the buffer list or, if "arg" |
| 156 | is a string, returns buffer whose full or short |
| 157 | name is "arg". In both cases, returns 'nil' |
| 158 | (nil value, not string) if the buffer is not |
| 159 | found. Otherwise, if "toboolean(arg)" is |
| 160 | 'true' returns the first buffer in the buffer |
| 161 | list or else the current buffer. |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 162 | |
Bram Moolenaar | 2334b6d | 2010-07-22 21:32:16 +0200 | [diff] [blame] | 163 | vim.window([arg]) If "arg" is a number, returns window with |
| 164 | number "arg" or 'nil' (nil value, not string) |
| 165 | if not found. Otherwise, if "toboolean(arg)" |
| 166 | is 'true' returns the first window or else the |
| 167 | current window. |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 168 | |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 169 | vim.type({arg}) Returns the type of {arg}. It is equivalent to |
| 170 | Lua's "type" function, but returns "list", |
Bram Moolenaar | 52b91d8 | 2013-06-15 21:39:51 +0200 | [diff] [blame] | 171 | "dict", "funcref", "buffer", or "window" if |
| 172 | {arg} is a list, dictionary, funcref, buffer, |
| 173 | or window, respectively. Examples: > |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 174 | :lua l = vim.list() |
| 175 | :lua print(type(l), vim.type(l)) |
Bram Moolenaar | 2f362bf | 2018-07-01 19:49:27 +0200 | [diff] [blame] | 176 | :" list |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 177 | < |
Yegappan Lakshmanan | 11328bc | 2021-08-06 21:34:38 +0200 | [diff] [blame] | 178 | vim.command({cmds}) Executes one or more lines of Ex-mode commands |
| 179 | in {cmds}. |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 180 | Examples: > |
| 181 | :lua vim.command"set tw=60" |
| 182 | :lua vim.command"normal ddp" |
Yegappan Lakshmanan | 11328bc | 2021-08-06 21:34:38 +0200 | [diff] [blame] | 183 | lua << trim END |
| 184 | vim.command([[ |
| 185 | new Myfile.js |
| 186 | call search('start') |
| 187 | ]]) |
| 188 | END |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 189 | < |
Bram Moolenaar | 2334b6d | 2010-07-22 21:32:16 +0200 | [diff] [blame] | 190 | vim.eval({expr}) Evaluates expression {expr} (see |expression|), |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 191 | converts the result to Lua, and returns it. |
| 192 | Vim strings and numbers are directly converted |
| 193 | to Lua strings and numbers respectively. Vim |
| 194 | lists and dictionaries are converted to Lua |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 195 | userdata (see |lua-list| and |lua-dict|). |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 196 | Examples: > |
| 197 | :lua tw = vim.eval"&tw" |
| 198 | :lua print(vim.eval"{'a': 'one'}".a) |
| 199 | < |
Bram Moolenaar | 2334b6d | 2010-07-22 21:32:16 +0200 | [diff] [blame] | 200 | vim.line() Returns the current line (without the trailing |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 201 | <EOL>), a Lua string. |
| 202 | |
Bram Moolenaar | 2334b6d | 2010-07-22 21:32:16 +0200 | [diff] [blame] | 203 | vim.beep() Beeps. |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 204 | |
Bram Moolenaar | 2334b6d | 2010-07-22 21:32:16 +0200 | [diff] [blame] | 205 | vim.open({fname}) Opens a new buffer for file {fname} and |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 206 | returns it. Note that the buffer is not set as |
| 207 | current. |
| 208 | |
Bram Moolenaar | e7b1ea0 | 2020-08-07 19:54:59 +0200 | [diff] [blame] | 209 | vim.call({name} [, {args}]) |
| 210 | Proxy to call Vim function named {name} with |
Bram Moolenaar | eb04f08 | 2020-05-17 14:32:35 +0200 | [diff] [blame] | 211 | arguments {args}. Example: > |
| 212 | :lua print(vim.call('has', 'timers')) |
| 213 | < |
| 214 | vim.fn Proxy to call Vim functions. Proxy methods are |
| 215 | created on demand. Example: > |
| 216 | :lua print(vim.fn.has('timers')) |
| 217 | < |
Bram Moolenaar | 125ed27 | 2021-04-07 20:11:12 +0200 | [diff] [blame] | 218 | vim.lua_version The Lua version Vim was compiled with, in the |
| 219 | form {major}.{minor}.{patch}, e.g. "5.1.4". |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 220 | |
Yegappan Lakshmanan | 11328bc | 2021-08-06 21:34:38 +0200 | [diff] [blame] | 221 | vim.version() Returns a Lua table with the Vim version. |
| 222 | The table will have the following keys: |
| 223 | major - major Vim version. |
| 224 | minor - minor Vim version. |
| 225 | patch - latest patch included. |
| 226 | |
Yegappan Lakshmanan | 9dc4bef | 2021-08-04 21:12:52 +0200 | [diff] [blame] | 227 | *lua-vim-variables* |
| 228 | The Vim editor global dictionaries |g:| |w:| |b:| |t:| |v:| can be accessed |
| 229 | from Lua conveniently and idiomatically by referencing the `vim.*` Lua tables |
h-east | 965d2ed | 2021-10-04 21:51:57 +0100 | [diff] [blame] | 230 | described below. In this way you can easily read and modify global Vim script |
Yegappan Lakshmanan | 9dc4bef | 2021-08-04 21:12:52 +0200 | [diff] [blame] | 231 | variables from Lua. |
| 232 | |
| 233 | Example: > |
| 234 | |
h-east | 965d2ed | 2021-10-04 21:51:57 +0100 | [diff] [blame] | 235 | vim.g.foo = 5 -- Set the g:foo Vim script variable. |
| 236 | print(vim.g.foo) -- Get and print the g:foo Vim script variable. |
| 237 | vim.g.foo = nil -- Delete (:unlet) the Vim script variable. |
Yegappan Lakshmanan | 9dc4bef | 2021-08-04 21:12:52 +0200 | [diff] [blame] | 238 | |
| 239 | vim.g *vim.g* |
| 240 | Global (|g:|) editor variables. |
| 241 | Key with no value returns `nil`. |
| 242 | |
| 243 | vim.b *vim.b* |
| 244 | Buffer-scoped (|b:|) variables for the current buffer. |
| 245 | Invalid or unset key returns `nil`. |
| 246 | |
| 247 | vim.w *vim.w* |
| 248 | Window-scoped (|w:|) variables for the current window. |
| 249 | Invalid or unset key returns `nil`. |
| 250 | |
| 251 | vim.t *vim.t* |
| 252 | Tabpage-scoped (|t:|) variables for the current tabpage. |
| 253 | Invalid or unset key returns `nil`. |
| 254 | |
| 255 | vim.v *vim.v* |
| 256 | |v:| variables. |
| 257 | Invalid or unset key returns `nil`. |
| 258 | |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 259 | ============================================================================== |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 260 | 3. List userdata *lua-list* |
| 261 | |
| 262 | List userdata represent vim lists, and the interface tries to follow closely |
| 263 | Vim's syntax for lists. Since lists are objects, changes in list references in |
| 264 | Lua are reflected in Vim and vice-versa. A list "l" has the following |
| 265 | properties and methods: |
| 266 | |
Bram Moolenaar | bd84617 | 2020-06-27 12:32:57 +0200 | [diff] [blame] | 267 | NOTE: In patch 8.2.1066 array indexes were changed from zero-based to |
| 268 | one-based. You can check with: > |
| 269 | if has("patch-8.2.1066") |
| 270 | |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 271 | Properties |
| 272 | ---------- |
| 273 | o "#l" is the number of items in list "l", equivalent to "len(l)" |
| 274 | in Vim. |
Bram Moolenaar | bd84617 | 2020-06-27 12:32:57 +0200 | [diff] [blame] | 275 | o "l[k]" returns the k-th item in "l"; "l" is one-indexed, as in Lua. |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 276 | To modify the k-th item, simply do "l[k] = newitem"; in |
Bram Moolenaar | a1f9f86 | 2020-06-28 22:41:26 +0200 | [diff] [blame] | 277 | particular, "l[k] = nil" removes the k-th item from "l". Item can |
| 278 | be added to the end of the list by "l[#l + 1] = newitem" |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 279 | o "l()" returns an iterator for "l". |
Bram Moolenaar | a1f9f86 | 2020-06-28 22:41:26 +0200 | [diff] [blame] | 280 | o "table.insert(l, newitem)" inserts an item at the end of the list. |
| 281 | (only Lua 5.3 and later) |
| 282 | o "table.insert(l, position, newitem)" inserts an item at the |
| 283 | specified position. "position" is one-indexed. (only Lua 5.3 and |
| 284 | later) |
| 285 | o "table.remove(l, position)" removes an item at the specified |
| 286 | position. "position" is one-indexed. |
| 287 | |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 288 | |
| 289 | Methods |
| 290 | ------- |
| 291 | o "l:add(item)" appends "item" to the end of "l". |
| 292 | o "l:insert(item[, pos])" inserts "item" at (optional) |
| 293 | position "pos" in the list. The default value for "pos" is 0. |
| 294 | |
| 295 | Examples: |
| 296 | > |
| 297 | :let l = [1, 'item'] |
| 298 | :lua l = vim.eval('l') -- same 'l' |
| 299 | :lua l:add(vim.list()) |
Bram Moolenaar | bd84617 | 2020-06-27 12:32:57 +0200 | [diff] [blame] | 300 | :lua l[1] = math.pi |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 301 | :echo l[0] " 3.141593 |
Bram Moolenaar | bd84617 | 2020-06-27 12:32:57 +0200 | [diff] [blame] | 302 | :lua l[1] = nil -- remove first item |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 303 | :lua l:insert(true, 1) |
Bram Moolenaar | bd84617 | 2020-06-27 12:32:57 +0200 | [diff] [blame] | 304 | :lua print(l, #l, l[1], l[2]) |
Bram Moolenaar | a1f9f86 | 2020-06-28 22:41:26 +0200 | [diff] [blame] | 305 | :lua l[#l + 1] = 'value' |
| 306 | :lua table.insert(l, 100) |
| 307 | :lua table.insert(l, 2, 200) |
| 308 | :lua table.remove(l, 1) |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 309 | :lua for item in l() do print(item) end |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 310 | |
| 311 | ============================================================================== |
| 312 | 4. Dict userdata *lua-dict* |
| 313 | |
| 314 | Similarly to list userdata, dict userdata represent vim dictionaries; since |
| 315 | dictionaries are also objects, references are kept between Lua and Vim. A dict |
| 316 | "d" has the following properties: |
| 317 | |
| 318 | Properties |
| 319 | ---------- |
| 320 | o "#d" is the number of items in dict "d", equivalent to "len(d)" |
| 321 | in Vim. |
| 322 | o "d.key" or "d['key']" returns the value at entry "key" in "d". |
| 323 | To modify the entry at this key, simply do "d.key = newvalue"; in |
| 324 | particular, "d.key = nil" removes the entry from "d". |
| 325 | o "d()" returns an iterator for "d" and is equivalent to "items(d)" in |
| 326 | Vim. |
| 327 | |
| 328 | Examples: |
| 329 | > |
| 330 | :let d = {'n':10} |
| 331 | :lua d = vim.eval('d') -- same 'd' |
| 332 | :lua print(d, d.n, #d) |
| 333 | :let d.self = d |
| 334 | :lua for k, v in d() do print(d, k, v) end |
| 335 | :lua d.x = math.pi |
| 336 | :lua d.self = nil -- remove entry |
| 337 | :echo d |
| 338 | < |
| 339 | |
| 340 | ============================================================================== |
Bram Moolenaar | b782869 | 2019-03-23 13:57:02 +0100 | [diff] [blame] | 341 | 5. Blob userdata *lua-blob* |
| 342 | |
| 343 | Blob userdata represent vim blobs. A blob "b" has the following properties: |
| 344 | |
| 345 | Properties |
| 346 | ---------- |
| 347 | o "#b" is the length of blob "b", equivalent to "len(b)" in Vim. |
| 348 | o "b[k]" returns the k-th item in "b"; "b" is zero-indexed, as in Vim. |
| 349 | To modify the k-th item, simply do "b[k] = number"; in particular, |
| 350 | "b[#b] = number" can append a byte to tail. |
| 351 | |
| 352 | Methods |
| 353 | ------- |
| 354 | o "b:add(bytes)" appends "bytes" to the end of "b". |
| 355 | |
| 356 | Examples: |
| 357 | > |
| 358 | :let b = 0z001122 |
| 359 | :lua b = vim.eval('b') -- same 'b' |
| 360 | :lua print(b, b[0], #b) |
| 361 | :lua b[1] = 32 |
| 362 | :lua b[#b] = 0x33 -- append a byte to tail |
| 363 | :lua b:add("\x80\x81\xfe\xff") |
| 364 | :echo b |
| 365 | < |
| 366 | |
| 367 | ============================================================================== |
| 368 | 6. Funcref userdata *lua-funcref* |
Bram Moolenaar | 52b91d8 | 2013-06-15 21:39:51 +0200 | [diff] [blame] | 369 | |
| 370 | Funcref userdata represent funcref variables in Vim. Funcrefs that were |
| 371 | defined with a "dict" attribute need to be obtained as a dictionary key |
| 372 | in order to have "self" properly assigned to the dictionary (see examples |
| 373 | below.) A funcref "f" has the following properties: |
| 374 | |
| 375 | Properties |
| 376 | ---------- |
| 377 | o "#f" is the name of the function referenced by "f" |
| 378 | o "f(...)" calls the function referenced by "f" (with arguments) |
| 379 | |
| 380 | Examples: |
| 381 | > |
| 382 | :function I(x) |
| 383 | : return a:x |
| 384 | : endfunction |
| 385 | :let R = function('I') |
| 386 | :lua i1 = vim.funcref('I') |
| 387 | :lua i2 = vim.eval('R') |
| 388 | :lua print(#i1, #i2) -- both 'I' |
| 389 | :lua print(i1, i2, #i2(i1) == #i1(i2)) |
| 390 | :function Mylen() dict |
| 391 | : return len(self.data) |
| 392 | : endfunction |
| 393 | :let mydict = {'data': [0, 1, 2, 3]} |
| 394 | :lua d = vim.eval('mydict'); d.len = vim.funcref('Mylen') |
| 395 | :echo mydict.len() |
| 396 | :lua l = d.len -- assign d as 'self' |
| 397 | :lua print(l()) |
| 398 | < |
Bram Moolenaar | 801ab06 | 2020-06-25 19:27:56 +0200 | [diff] [blame] | 399 | Lua functions and closures are automatically converted to a Vim |Funcref| and |
| 400 | can be accessed in Vim scripts. Example: |
| 401 | > |
| 402 | lua <<EOF |
| 403 | vim.fn.timer_start(1000, function(timer) |
| 404 | print('timer callback') |
| 405 | end) |
| 406 | EOF |
Bram Moolenaar | 52b91d8 | 2013-06-15 21:39:51 +0200 | [diff] [blame] | 407 | |
| 408 | ============================================================================== |
Bram Moolenaar | b782869 | 2019-03-23 13:57:02 +0100 | [diff] [blame] | 409 | 7. Buffer userdata *lua-buffer* |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 410 | |
Bram Moolenaar | 2334b6d | 2010-07-22 21:32:16 +0200 | [diff] [blame] | 411 | Buffer userdata represent vim buffers. A buffer userdata "b" has the following |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 412 | properties and methods: |
| 413 | |
| 414 | Properties |
| 415 | ---------- |
Bram Moolenaar | 2334b6d | 2010-07-22 21:32:16 +0200 | [diff] [blame] | 416 | o "b()" sets "b" as the current buffer. |
| 417 | o "#b" is the number of lines in buffer "b". |
| 418 | o "b[k]" represents line number k: "b[k] = newline" replaces line k |
| 419 | with string "newline" and "b[k] = nil" deletes line k. |
| 420 | o "b.name" contains the short name of buffer "b" (read-only). |
| 421 | o "b.fname" contains the full name of buffer "b" (read-only). |
| 422 | o "b.number" contains the position of buffer "b" in the buffer list |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 423 | (read-only). |
| 424 | |
| 425 | Methods |
| 426 | ------- |
Bram Moolenaar | 2334b6d | 2010-07-22 21:32:16 +0200 | [diff] [blame] | 427 | o "b:insert(newline[, pos])" inserts string "newline" at (optional) |
| 428 | position "pos" in the buffer. The default value for "pos" is |
| 429 | "#b + 1". If "pos == 0" then "newline" becomes the first line in |
| 430 | the buffer. |
| 431 | o "b:next()" returns the buffer next to "b" in the buffer list. |
| 432 | o "b:previous()" returns the buffer previous to "b" in the buffer |
| 433 | list. |
| 434 | o "b:isvalid()" returns 'true' (boolean) if buffer "b" corresponds to |
| 435 | a "real" (not freed from memory) Vim buffer. |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 436 | |
| 437 | Examples: |
| 438 | > |
| 439 | :lua b = vim.buffer() -- current buffer |
| 440 | :lua print(b.name, b.number) |
| 441 | :lua b[1] = "first line" |
| 442 | :lua b:insert("FIRST!", 0) |
| 443 | :lua b[1] = nil -- delete top line |
| 444 | :lua for i=1,3 do b:insert(math.random()) end |
| 445 | :3,4lua for i=vim.lastline,vim.firstline,-1 do b[i] = nil end |
| 446 | :lua vim.open"myfile"() -- open buffer and set it as current |
| 447 | |
| 448 | function! ListBuffers() |
| 449 | lua << EOF |
| 450 | local b = vim.buffer(true) -- first buffer in list |
| 451 | while b ~= nil do |
| 452 | print(b.number, b.name, #b) |
| 453 | b = b:next() |
| 454 | end |
| 455 | vim.beep() |
| 456 | EOF |
| 457 | endfunction |
| 458 | < |
| 459 | |
| 460 | ============================================================================== |
Bram Moolenaar | b782869 | 2019-03-23 13:57:02 +0100 | [diff] [blame] | 461 | 8. Window userdata *lua-window* |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 462 | |
Bram Moolenaar | 2334b6d | 2010-07-22 21:32:16 +0200 | [diff] [blame] | 463 | Window objects represent vim windows. A window userdata "w" has the following |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 464 | properties and methods: |
| 465 | |
| 466 | Properties |
| 467 | ---------- |
Bram Moolenaar | 2334b6d | 2010-07-22 21:32:16 +0200 | [diff] [blame] | 468 | o "w()" sets "w" as the current window. |
| 469 | o "w.buffer" contains the buffer of window "w" (read-only). |
| 470 | o "w.line" represents the cursor line position in window "w". |
| 471 | o "w.col" represents the cursor column position in window "w". |
| 472 | o "w.width" represents the width of window "w". |
| 473 | o "w.height" represents the height of window "w". |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 474 | |
| 475 | Methods |
| 476 | ------- |
Bram Moolenaar | 2334b6d | 2010-07-22 21:32:16 +0200 | [diff] [blame] | 477 | o "w:next()" returns the window next to "w". |
| 478 | o "w:previous()" returns the window previous to "w". |
| 479 | o "w:isvalid()" returns 'true' (boolean) if window "w" corresponds to |
| 480 | a "real" (not freed from memory) Vim window. |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 481 | |
| 482 | Examples: |
| 483 | > |
| 484 | :lua w = vim.window() -- current window |
| 485 | :lua print(w.buffer.name, w.line, w.col) |
| 486 | :lua w.width = w.width + math.random(10) |
| 487 | :lua w.height = 2 * math.random() * w.height |
| 488 | :lua n,w = 0,vim.window(true) while w~=nil do n,w = n + 1,w:next() end |
| 489 | :lua print("There are " .. n .. " windows") |
| 490 | < |
| 491 | |
| 492 | ============================================================================== |
Bram Moolenaar | b782869 | 2019-03-23 13:57:02 +0100 | [diff] [blame] | 493 | 9. luaeval() Vim function *lua-luaeval* *lua-eval* |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 494 | |
| 495 | The (dual) equivalent of "vim.eval" for passing Lua values to Vim is |
| 496 | "luaeval". "luaeval" takes an expression string and an optional argument and |
| 497 | returns the result of the expression. It is semantically equivalent in Lua to: |
| 498 | > |
| 499 | local chunkheader = "local _A = select(1, ...) return " |
| 500 | function luaeval (expstr, arg) |
| 501 | local chunk = assert(loadstring(chunkheader .. expstr, "luaeval")) |
| 502 | return chunk(arg) -- return typval |
| 503 | end |
| 504 | < |
Bram Moolenaar | 52b91d8 | 2013-06-15 21:39:51 +0200 | [diff] [blame] | 505 | Note that "_A" receives the argument to "luaeval". Lua numbers, strings, and |
Bram Moolenaar | b782869 | 2019-03-23 13:57:02 +0100 | [diff] [blame] | 506 | list, dict, blob, and funcref userdata are converted to their Vim respective |
| 507 | types, while Lua booleans are converted to numbers. An error is thrown if |
| 508 | conversion of any of the remaining Lua types, including userdata other than |
| 509 | lists, dicts, blobs, and funcrefs, is attempted. |
Bram Moolenaar | 52b91d8 | 2013-06-15 21:39:51 +0200 | [diff] [blame] | 510 | |
| 511 | Examples: > |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 512 | |
| 513 | :echo luaeval('math.pi') |
| 514 | :lua a = vim.list():add('newlist') |
| 515 | :let a = luaeval('a') |
| 516 | :echo a[0] " 'newlist' |
| 517 | :function Rand(x,y) " random uniform between x and y |
| 518 | : return luaeval('(_A.y-_A.x)*math.random()+_A.x', {'x':a:x,'y':a:y}) |
| 519 | : endfunction |
| 520 | :echo Rand(1,10) |
| 521 | |
| 522 | |
| 523 | ============================================================================== |
Bram Moolenaar | b782869 | 2019-03-23 13:57:02 +0100 | [diff] [blame] | 524 | 10. Dynamic loading *lua-dynamic* |
Bram Moolenaar | d94464e | 2015-11-02 15:28:18 +0100 | [diff] [blame] | 525 | |
| 526 | On MS-Windows and Unix the Lua library can be loaded dynamically. The |
| 527 | |:version| output then includes |+lua/dyn|. |
| 528 | |
| 529 | This means that Vim will search for the Lua DLL or shared library file only |
| 530 | when needed. When you don't use the Lua interface you don't need it, thus |
| 531 | you can use Vim without this file. |
| 532 | |
Bram Moolenaar | d94464e | 2015-11-02 15:28:18 +0100 | [diff] [blame] | 533 | |
Bram Moolenaar | e18c0b3 | 2016-03-20 21:08:34 +0100 | [diff] [blame] | 534 | MS-Windows ~ |
| 535 | |
| 536 | To use the Lua interface the Lua DLL must be in your search path. In a |
| 537 | console window type "path" to see what directories are used. The 'luadll' |
| 538 | option can be also used to specify the Lua DLL. The version of the DLL must |
| 539 | match the Lua version Vim was compiled with. |
| 540 | |
| 541 | |
| 542 | Unix ~ |
| 543 | |
| 544 | The 'luadll' option can be used to specify the Lua shared library file instead |
| 545 | of DYNAMIC_LUA_DLL file what was specified at compile time. The version of |
| 546 | the shared library must match the Lua version Vim was compiled with. |
Bram Moolenaar | d94464e | 2015-11-02 15:28:18 +0100 | [diff] [blame] | 547 | |
| 548 | |
| 549 | ============================================================================== |
Bram Moolenaar | 1dced57 | 2012-04-05 16:54:08 +0200 | [diff] [blame] | 550 | vim:tw=78:ts=8:noet:ft=help:norl: |