openhab-vscode/snippets/openhab_sitemaps.json

26 lines
673 B
JSON

{
"sitemap": {
"prefix": "sitemap",
"body": [
"sitemap ${1:sitemap_name} label=\"${2:Sitemap Label}\" {",
"\tFrame label=\"${3:First frame}\" icon=\"${4:icon}\" {",
"\t\tText item=${5:Item}",
"\t}",
"\tFrame label=\"${6:Second frame}\" {",
"\t\tGroup item=${7:OtherItem}",
"\t}",
"}"
],
"description": "Create a openHAB sitemap"
},
"Add new empty Frame": {
"prefix": "frame",
"body": [
"Frame label=\"$1\" ${2|\u200B,icon=\"\" |}{",
"\t $3",
"}"],
"description": "Add new frame with label and optional icon"
}
}