mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-25 01:50:04 +08:00
14 lines
224 B
Lua
Vendored
14 lines
224 B
Lua
Vendored
local a = { 1, 2, 3, 4, 5 }
|
|
-- ^ number ^ punctuation.bracket
|
|
-- ^ variable
|
|
|
|
local _ = next(a)
|
|
-- ^ function.builtin
|
|
-- ^ keyword
|
|
|
|
_ = next(a)
|
|
-- ^ function.builtin
|
|
|
|
next(a)
|
|
-- ^ function.builtin
|