mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
9 lines
170 B
Lua
9 lines
170 B
Lua
|
|
|
|
return {
|
|
s("ternary", {
|
|
-- equivalent to "${1:cond} ? ${2:then} : ${3:else}"
|
|
i(1, "cond"), t(" ? "), i(2, "then"), t(" : "), i(3, "else")
|
|
})
|
|
}
|
|
|