1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 11:24:55 +02:00

linting fixes

This commit is contained in:
Henrik Hautakoski 2024-06-08 17:00:15 +02:00
parent 6ae28327e0
commit b2892fa855
5 changed files with 24 additions and 7 deletions

View file

@ -1,3 +1,9 @@
local ls = require('luasnip')
local s = ls.snippet
local t = ls.text_node
local i = ls.insert_node
return {
s("ternary", {
i(1, "cond"), t(" ? "), i(2, "true"), t(" : "), i(3, "false")