60 lines
1.1 KiB
Plaintext
60 lines
1.1 KiB
Plaintext
;; -*- coding: utf-8; lexical-binding: t -*-
|
|
(define-abbrev-table 'mhtml-mode-abbrev-table
|
|
'(
|
|
("doc" "<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset=\"UTF-8\"/>
|
|
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>" nil :count 1)
|
|
("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>
|
|
<html>
|
|
<head>
|
|
<meta charset=\"UTF-8\"/>
|
|
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>" nil :count 10)
|
|
("doctype" "<!DOCTYPE html>" nil :count 2)
|
|
))
|
|
|