Add bwtest abbrev.

This commit is contained in:
kj
2025-09-01 15:24:54 -03:00
parent b0ebfce668
commit d50d5228cf

View File

@ -1,4 +1,4 @@
;;-*-coding: utf-8;-*-
;; -*- coding: utf-8; lexical-binding: t -*-
(define-abbrev-table 'mhtml-mode-abbrev-table
'(
("doc" "<!DOCTYPE html>
@ -14,6 +14,34 @@
("doctype" "<!DOCTYPE html>" nil :count 0)
))
(define-abbrev-table 'php-ts-mode-abbrev-table
'(
("bwtest" "use Tests\\TestCase;
class Test extends TestCase
{
/**
* @group
* @group
* @test
*/
public function Service()
{
/**
* Preparing
*/
/**
* Actions
*/
/**
* Asserts
*/
}
}" nil :count 6)
))
(define-abbrev-table 'web-mode-abbrev-table
'(
("doc" "<!DOCTYPE html>
@ -25,7 +53,7 @@
</head>
<body>
</body>
</html>" nil :count 9)
("doctype" "<!DOCTYPE html>" nil :count 1)
</html>" nil :count 10)
("doctype" "<!DOCTYPE html>" nil :count 2)
))