-
Notifications
You must be signed in to change notification settings - Fork 0
/
fountain.snippets
114 lines (85 loc) · 1.68 KB
/
fountain.snippets
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
# Title Page
snippet title "Title page" b
Title:
${1:`!v expand('%:t:r')`}
Credit: Written by
Author: ${2:Your Name}
Source: ${3:Based on / Story by: Author}
Draft date: `date +%m/%d/%Y`
Contact:
${5:Organization Name}
${6:Address Line #1}
${7:Address Line #2}
$0
> FIN <
endsnippet
# Scene Headings
snippet id "INT. DAY" b
INT. $1 - DAY
$0
endsnippet
snippet in "INT. NIGHT" b
INT. $1 - NIGHT
$0
endsnippet
snippet ed "INT. DAY" b
EXT. $1 - DAY
$0
endsnippet
snippet en "INT. NIGHT" b
EXT. $1 - NIGHT
$0
endsnippet
# Boneyard Snippets
# Wrap Text in Bone Yard
snippet b "Boneyard"
/*
${VISUAL}
*/
$0
endsnippet
# To use this, select the desired text in visual mode "v". Then enter the key sequence "iw" to wrap the text in a boneyard. Then enter <tab>b<tab>.
snippet cb "Create Boneyard"
/*
$1
*/
$0
endsnippet
# Emphasis
snippet it "italics" i
*$1*$0
endsnippet
snippet bf "boldface" i
**$1**$0
endsnippet
snippet un "underline" i
_$1_$0
endsnippet
snippet c "centered text" b
> $1 <
$0
endsnippet
# Other
snippet ts "two spaces" b
{two spaces}
$0
endsnippet
snippet ct "CUT TO:" iA
CUT TO:
$0
endsnippet
snippet beg "BEGIN / END" bA
BEGIN: $1
$0
END: $1
endsnippet
# For a character you use very frequently, or a character with a particularly long name, copy then uncomment the 3 lines below:
#snippet name "description" b
#long name
#endsnippet
#
#Example:
#
#snippet Jugemu "Jugemu Jugemu" b
#Jugemu Jugemu Go-Kō-no-Surikire Kaijari-suigyo no Suigyō-matsu Unrai-matsu Fūrai-matsu Kū-Neru Tokoro ni Sumu Tokoro Yaburakōji no Burakōji Paipo Paipo Paipo no Shūringan Shūringan no Gūrindai Gūrindai no Ponpokopii no Ponpokonaa no Chōkyūmei no Chōsuke
#endsnippet