-
Notifications
You must be signed in to change notification settings - Fork 0
/
Alan IF Transcript.sublime-settings
36 lines (33 loc) · 2.04 KB
/
Alan IF Transcript.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
// "Alan IF Transcript.sublime-settings" v0.0.2 (2018-08-23) | Alan v3 beta6
// ------------------------------------------------------------------------------
// Sublime Alan IF: Alan IF Transcript files settings.
// ------------------------------------------------------------------------------
// Transcript files are recordings of an Interactive Fiction adventure gameplay,
// generated by the interpreter. I've added to the Alan package a custom syntax
// definition for "Alan IF Transcript" files (with ".a3t"/".a3log" extension) to
// ensure that they are automatically encoded in ISO-8859-1, otherwise Sublime
// Text will default to UTF-8 encoding, which would show incorrectly transcripts
// that contain special characters (like accented letters).
{
// =========================================================================
// LOOK & FEEL OPTIONS
// =========================================================================
"color_scheme": "Packages/Alan_IF/Alan IF Transcript.hidden-tmTheme",
// =========================================================================
// FILE ENCODING
// =========================================================================
// Alan solution files default encoding: ISO 8859-1
"default_encoding": "Western (ISO 8859-1)",
"fallback_encoding": "Western (ISO 8859-1)",
// ... it looks like ISO 8859-1 has to be set as "fallback_encoding" too, in
// order to prevent lot's of problems with special characters, where ST will
// try to fallback on UTF-8 otherwise!
// =========================================================================
// =========================================================================
// INDENTATION SETTINGS
// =========================================================================
// We need to impose some indentation settings for solution files...
// -------------------------------------------------------------------------
// "tab_size": 2, // Tabs 2 is a reasonable setting
// "translate_tabs_to_spaces": true,
}