~artem-anufrij/scratch/terminal-save-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
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
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
	<enum id="scratch-window-states">
		<value nick="Normal" value="0" />
		<value nick="Maximized" value="1" />
		<value nick="Fullscreen" value="2" />
	</enum>
	<schema path="/org/pantheon/scratch/saved-state/" id="org.pantheon.scratch.saved-state" gettext-domain="scratch">
		<key name="window-state" enum="scratch-window-states">
			<default>"Normal"</default>
			<summary>The saved state of the window.</summary>
			<description>The saved state of the window.</description>
		</key>
		<key name="window-width" type="i">
			<default>850</default>
			<summary>The saved width of the window.</summary>
			<description>The saved width of the window. Must be greater than 700, or it will not take effect.</description>
		</key>
		<key name="window-height" type="i">
			<default>550</default>
			<summary>The saved height of the window.</summary>
			<description>The saved height of the window. Must be greater than 400, or it will not take effect.</description>
		</key>
		<key name="window-x" type="i">
			<default>250</default>
			<summary></summary>
			<description></description>
		</key>
		<key name="window-y" type="i">
			<default>250</default>
			<summary></summary>
			<description></description>
		</key>
		
		<key name="hp1-size" type="i">
			<default>125</default>
			<summary></summary>
			<description></description>
		</key>
		<key name="hp2-size" type="i">
			<default>125</default>
			<summary></summary>
			<description></description>
		</key>
		<key name="vp-size" type="i">
			<default>125</default>
			<summary></summary>
			<description></description>
		</key>
	</schema>
	<schema path="/org/pantheon/scratch/settings/" id="org.pantheon.scratch.settings" gettext-domain="scratch">
		<key type="as" name="plugins-enabled">
			<default>['contractor']</default>
			<summary>Enabled Plugins</summary>
			<description>Enabled Plugins</description>
		</key>
		<key name="show-at-start" type="s">
			<default>'last-tabs'</default>
			<summary>Show the welcome screen or the last opened files at Scratch launch</summary>
			<description>Show the welcome screen or the last opened files at Scratch launch.</description>
		</key>
		<key type="as" name="opened-files">
			<default>['']</default>
			<summary>Files opened in the previously session of Scratch</summary>
			<description>It is used to open the files opened in the last Scratch session</description>
		</key>
		<key name="autosave" type="b">
			<default>true</default>
			<summary>Autosave edited files</summary>
			<description>Autosave edited files.</description>
		</key>
		<key name="show-right-margin" type="b">
			<default>false</default>
			<summary>Show the right margin</summary>
			<description>Specifies if the Source view should show the right margin or not.</description>
		</key>
		<key name="right-margin-position" type="i">
			<default>80</default>
			<summary>Right margin position</summary>
			<description>Specifies the right margin position.</description>
		</key>
		<key name="show-line-numbers" type="b">
			<default>false</default>
			<summary>Display Line Numbers</summary>
			<description>Whether Scratch should display line numbers in the editing area.</description>
		</key>
		<key name="line-break" type="b">
			<default>false</default>
			<summary>Split words in many lines</summary>
			<description>Split words in many lines.</description>
		</key>
		<key name="highlight-current-line" type="b">
			<default>false</default>
			<summary>Highlight Current Line</summary>
			<description>Whether Scratch should highlight the current line.</description>
		</key>
		<key name="highlight-matching-brackets" type="b">
			<default>false</default>
			<summary>Highlight Matching Brackets</summary>
			<description>Whether Scratch should highlight matching brackets.</description>
		</key>
		<key name="draw-spaces" type="b">
			<default>false</default>
			<summary>Draw spaces and tabs with symbols</summary>
			<description>Draw spaces and tabs with symbols.</description>
		</key>
		<key name="spaces-instead-of-tabs" type="b">
			<default>true</default>
			<summary>Use spaces instead of tabs</summary>
			<description>Whether Scratch should replace tabs with spaces</description>
		</key>
		<key name="auto-indent" type="b">
			<default>false</default>
			<summary>Use auto indent</summary>
			<description>Whether Scratch should use auto indentation</description>
		</key>
		<key name="indent-width" type="i">
			<default>4</default>
			<summary>Tab Size</summary>
			<description>Specifies the number of spaces that should be displayed instead of Tab characters.</description>
		</key>
		<key name="use-system-font" type="b">
			<default>true</default>
			<summary>Use system font</summary>
			<description>Whether Scratch should use the default system font</description>
		</key>
		<key name="font" type="s">
			<default>'Droid Sans Mono 10'</default>
			<summary>Preferred Font</summary>
			<description>Set the preferred font.</description>
		</key>
		<key name="style-scheme" type="s">
			<default>'classic'</default>
			<summary>Preferred Style Scheme</summary>
			<description>Set the preferred style scheme.</description>
		</key>
	</schema>
	<schema path="/org/pantheon/scratch/services/" id="org.pantheon.scratch.services" gettext-domain="scratch">
		<key name="paste-format-code" type="s">
			<default>'None'</default>
			<summary>Default PasteBin text highlight</summary>
			<description>Set the preferred text highlight.</description>
		</key>
		<key name="expiry-time" type="s">
			<default>'N'</default>
			<summary>Default PasteBin expiration time</summary>
			<description>Set the preferred expiration time.</description>
		</key>
		<key name="set-private" type="b">
			<default>false</default>
			<summary>Default PasteBin policy</summary>
			<description>Set the preferred policy.</description>
		</key>
	</schema>
</schemalist>