Lines Matching refs:number
72 without a trailing <EOL>, and the current line number.
154 vim.buffer([arg]) If "arg" is a number, returns buffer with
155 number "arg" in the buffer list or, if "arg"
163 vim.window([arg]) If "arg" is a number, returns window with
164 number "arg" or 'nil' (nil value, not string)
273 o "#l" is the number of items in list "l", equivalent to "len(l)"
320 o "#d" is the number of items in dict "d", equivalent to "len(d)"
349 To modify the k-th item, simply do "b[k] = number"; in particular,
350 "b[#b] = number" can append a byte to tail.
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
422 o "b.number" contains the position of buffer "b" in the buffer list
440 :lua print(b.name, b.number)
452 print(b.number, b.name, #b)