-
Notifications
You must be signed in to change notification settings - Fork 0
/
snippets.cson
179 lines (175 loc) · 4.01 KB
/
snippets.cson
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# Your snippets
#
# Atom snippets allow you to enter a simple prefix in the editor and hit tab to
# expand the prefix into a larger code block with templated values.
#
# You can create a new snippet in this file by typing "snip" and then hitting
# tab.
#
# An example CoffeeScript snippet to expand log to console.log:
#
# '.source.coffee':
# 'Console log':
# 'prefix': 'log'
# 'body': 'console.log $1'
#
# Each scope (e.g. '.source.coffee' above) can only be declared once.
#
# This file uses CoffeeScript Object Notation (CSON).
# If you are unfamiliar with CSON, you can read more about it in the
# Atom Flight Manual:
# http://flight-manual.atom.io/using-atom/sections/basic-customization/#_cson
#b 太字
#br 改行
#chap 章番号
#chapref 章番号+タイトル
#cmd/ コマンド実行結果
#code コード
#column コラム
#dlist 用語リスト
#emlist/ リスト(非採番)
#emlistnum/ 行番号付きリスト(非採番)
#fn 脚注(参照)
#fn/ 脚注
#hd 見出し(参照)
#href リンク
#icon アイコン
#img 図表(参照)
#img/ 図表
#indepimg/ 図表(非採番)
#kw キーワード
#label ラベル(参照)
#label/ ラベル
#lead/ リード文
#list リスト(参照)
#list/ リスト
#listnum/ 行番号付きリスト
#olist 番号付き箇条書き
#quote/ 引用
#ruby 振り仮名
#table テーブル(参照)
#table/ テーブル
#title 章タイトル
#tt 等幅
#u 下線
#ulist 番号なし箇条書き
'.source.review':
'Chapter':
'prefix': 'ch'
'body': '={${1:chap-heading}}$0'
'Chapter Reference':
'prefix': 'chapref'
'body': '@<chapref>{${1:chapter-heading}}$0'
'Section':
'prefix': 'sec'
'body': '=={${1:sec-heading}}$0'
'Section Reference':
'prefix': 'secref'
'body': '@<secref>{${1:chap-id}|${2:sec-heading}}$0'
'UnOrderd List':
'prefix': 'ulist'
'body': ' * ${1:1段深くは**使う}\n'
'Orderd List':
'prefix': 'olist'
'body': ' 1. ${1:続けるなら番号増やす}\n'
'Defines List':
'prefix': 'dlist'
'body': ': ${1:用語}\n\t${2:解説}\n'
'Single Line Comment':
'prefix': 'slc'
'body': '#@#$0'
'Multi-line Comment':
'prefix': 'mlc'
'body': """
#@+++
${1:comment here}
#@---
"""
'Bold':
'prefix': 'bld'
'body': '@<b>{${1:太字にする単語}}$0'
'Strong':
'prefix': 'strng'
'body': '@<strong>{${1:強調する単語}}$0'
'Program List':
'prefix': 'plist'
'body': """
//list[${1:label}][${2:desc}]{
//}\n$0
"""
'Program List Reference':
'prefix': 'plist/'
'body': '@<list>{${1:label of list}}$0'
'Terminal':
'prefix': 'term'
'body': """
//terminal[${1:label}][${2:desc}]{
//}\n$0
"""
'Footnote':
'prefix': 'ftn'
'body': """
@<fn<{${1:label}}
//footnote[${2:label}][${3:脚注テキスト}]$0
"""
'Image':
'prefix': 'img'
'body': '//image[${1:fileName}][${2:desc}][scale=1.0]$0'
'New Line':
'prefix': 'br'
'body': '@<br>{}$0'
'Empty Line':
'prefix': 'kugyo'
'body': '//blankline$0'
'Gaiyou':
'prefix': 'gaiyou'
'body': """
//abstract{
${1:概要テキスト}
//}$0
"""
'Note':
'prefix': 'note'
'body': """
//note[${1:title}]{
//}$0
"""
'Column':
'prefix': 'clm'
'body': """
===[column]
${1:column text}
===[/column]$0
"""
'URL':
'prefix': 'url'
'body': '@<href>{${1:url}}'
'Link':
'prefix': 'link'
'body': '@<href>{${1:url}, ${2:テキスト}}'
'quote':
'prefix': 'quote'
'body': """
//quote{
${1:quote text}
//}$0
"""
'Comment in List':
'prefix': 'cil'
'body': '@<balloon>{${1:text in program list}}'
'Comment line':
'prifix': 'com'
'body': '#@#'
'Comment block':
'prefix': 'cob'
'body': """
#@+++
${1:block comment}
#@----
"""
'New Page':
'prefix': 'newpage'
'body': '//clearpage'
'Baloon':
'prefix': 'baln'
'body': '@<balloon>{${1:comment}}$0'