acf-builder-cheatsheet icon indicating copy to clipboard operation
acf-builder-cheatsheet copied to clipboard

Feature request: VSCode snippets

Open SergiArias opened this issue 3 years ago • 0 comments

As most of the roots sage fans do, we write a lot of acf builder fields. Wouldn't it be interesting to have some snippets to complement the cheatsheet and thus write it faster?

As an example I have:

	"ACFB textarea": {
		"prefix": "ata",
		"body": [
			"->addTextarea('$1', ['label' => '${2:$1}', 'new_lines' => 'br', 'rows' => '${3:2}'])$0",
		],
		"description": "Textarea ACF Builder"
	},

Or:

	"ACFB group": {
		"prefix": "agr",
		"body": [
			"->addGroup('$1')",
			"    $0",
			"    ->endGroup()"
		],
		"description": "Group ACF Builder"
	},

SergiArias avatar Jan 03 '22 10:01 SergiArias