-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathFountainhead.sublime-settings
executable file
·121 lines (108 loc) · 4.96 KB
/
Fountainhead.sublime-settings
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
{
// To change settings:
// 1. Selection > Select All (⌘A / ⌃A)
// 2. Edit > Copy (⌘C / ⌃C)
// 3. Tools > Fountainhead > Preferences > Fountain Settings - User
// 4. Edit > Paste (⌘V / ⌃V)
// 5. Comment/Uncomment (⌘/ / ⌃/ or by adding/deleting the // at the beginning of the line) or Edit the value of the setting you want to change (Note: Each setting should only have one active value)
// 6. Save (⌘S / ⌃S)
"extensions":
[
"fountain"
],
// Monospaced Fonts
// Find more fonts at: http://www.fontsquirrel.com/fonts/list/classification/monospaced
// "font_face": "Menlo",
// "font_face": "Lekton",
"font_face": "Source Code Pro Light",
// "font_face": "Courier",
// "font_face": "Courier Screenplay",
// "font_face": "Courier Final Draft",
// "font_face": "Courier Prime",
// "font_face": "Iconsolata",
// "font_face": "Inconsolata-dz",
// Download and learn more about Input, fonts for code, from Font Bureau at http://input.fontbureau.com
// If you are trying to use Input's proportional typefaces, please read http://input.fontbureau.com/workarounds/
// "font_face": "InputMono ExLight",
// Download and learn more about the free Dyslexia Typeface at http://opendyslexic.org
// "font_face": "OpenDyslexicMono",
"font_size": 16,
// Uncomment a desired color_scheme that will only be used when working on .fountain files. Program restart or reopening document may be required for changes to take effect.
// "color_scheme": "Packages/Fountainhead/schemes/Ebony.tmTheme",
// "color_scheme": "Packages/Fountainhead/schemes/Ivory.tmTheme",
// "color_scheme": "Packages/Fountainhead/schemes/Night Owl.tmTheme",
// "color_scheme": "Packages/Fountainhead/schemes/Night.tmTheme",
// "color_scheme": "Packages/Fountainhead/schemes/Day.tmTheme",
// "color_scheme": "Packages/Fountainhead/schemes/OdysseusDark.tmTheme",
// "color_scheme": "Packages/Fountainhead/schemes/OdysseusLight.tmTheme",
// "color_scheme": "Packages/Fountainhead/schemes/Superbman.tmTheme",
// "color_scheme": "Packages/Fountainhead/schemes/Bezarro.tmTheme",
// "color_scheme": "Packages/Fountainhead/schemes/SolarizedDark.tmTheme",
// "color_scheme": "Packages/Fountainhead/schemes/SolarizedLight.tmTheme",
// Enables auto-completions of character and scene headings when the first character typed on a line is lowercase or a period
"auto_complete": true,
"auto_complete_selector": "constant.character",
"word_separators": "/\\()\"-:,;<>~!@#$%^&*|+=[]{}`~?",
"draw_indent_guides": false,
// Always show fold buttons in the gutter
"fade_fold_buttons": false,
"indent_subsequent_lines": true,
"auto_indent": false,
"draw_white_space": "selection", //"all" "none" "selection"
"word_wrap": true,
"wrap_width": 62,
"gutter": true,
"margin": 0,
"caret_extra_top": 2,
"caret_extra_bottom": 2,
"caret_extra_width": 0,
"line_padding_top": 1,
"highlight_line": true,
"draw_centered": true,
"spell_check": true,
"fold_buttons": true,
"trim_automatic_white_space": true,
"line_numbers": false,
"tab_size": 4,
"translate_tabs_to_spaces": true,
"use_tab_stops": true,
"shift_tab_unindent": true,
"auto_complete_commit_on_tab": true,
"tab_completion": true,
"auto_complete_with_fields": true,
// Automatically save your progress
"auto_save": false,
// Saves after the desired number of key strokes; useful when used with a program like Marked 2
"auto_save_count": 42,
// Saves when you go to another window or bring up an overlay
"save_on_focus_lost": false,
// Automatically scrolls the page up when you reach the bottom of the screen
"auto_scroll": true,
// Automatically hides Boneyard, Synopses, or Notes when opening a .fountain file
"fold_boneyard": false,
"fold_synopses": false,
"fold_notes": false,
// Automatically create a list of characters
"characters": true,
// Automatically create a list of scene headings
"scenes": true,
// Automatically add (CONT'D) to character names
"contd": true,
// Add a blank line (double line space) after dialogue (lyrics have single line spaces)
"dialogue_double_line_space": true,
// Add a blank line (double line space) after notes
"note_double_line_space": true,
// Toggle key binding commands
// Move cursor forward using shift + space
"forward_cursor": true,
// Toggle boneyard, synopses, and notes folding keyboard shortcuts
"fold_text": true,
// Toggle capitalizing of current line
"cap_current_line": true,
// Automatically capitalize scene headings, transitions, and character names when pressing Return
"line_cap": true,
// Automatically places a blank line after scene headings, action, and transitions
"auto_line": true,
// Automatically wrap/unwrap text when using markdown text emphasis
"text_emphasis": true
}