Skip to content

Commit 2bd90b6

Browse files
committed
1 parent f0a3184 commit 2bd90b6

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

UltiSnips/bbcode.snippets

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
#https://bbs.archlinux.org/help.php#bbcode
2+
3+
priority -50
4+
5+
snippet b "bold"
6+
[b]$0[/b]
7+
endsnippet
8+
snippet u "underlined"
9+
[u]$0[/u]
10+
endsnippet
11+
snippet i "italic"
12+
[i]$0[/i]
13+
endsnippet
14+
snippet s "strike through"
15+
[s]$0[/s]
16+
endsnippet
17+
snippet del "deleted"
18+
[del]$0[/del]
19+
endsnippet
20+
snippet ins "inserted"
21+
[ins]$0[/ins]
22+
endsnippet
23+
snippet em "emphasised"
24+
[em]$0[/em]
25+
endsnippet
26+
snippet color "color"
27+
[color=$1]$0[/color]
28+
endsnippet
29+
snippet h "heading"
30+
[h]$0[/h]
31+
endsnippet
32+
snippet url "url"
33+
[url=$1]$0[/url]
34+
endsnippet
35+
snippet email "email"
36+
[email=$1]$0[/email]
37+
endsnippet
38+
snippet topic "topic with id"
39+
[topic=$1]$0[/topic]
40+
endsnippet
41+
snippet post "post with id"
42+
[post=$1]$0[/post]
43+
endsnippet
44+
snippet forum "forum with id"
45+
[forum=$1]$0[/forum]
46+
endsnippet
47+
snippet user "user with id"
48+
[user=$1]$0[/user]
49+
endsnippet
50+
snippet img "image"
51+
[img=$1]$0[/img]
52+
endsnippet
53+
snippet quote "quote"
54+
[quote=$1]$0[/quote]
55+
endsnippet
56+
snippet code "code"
57+
[code]$0[/code]
58+
endsnippet
59+
snippet list "list"
60+
[list=$1]$0[/list]
61+
endsnippet
62+
snippet * "*"
63+
[*]$0[/*]
64+
endsnippet

0 commit comments

Comments
 (0)