-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathide.settings.html
More file actions
226 lines (211 loc) · 8.61 KB
/
ide.settings.html
File metadata and controls
226 lines (211 loc) · 8.61 KB
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<div class="container-fluid ide-settings">
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="form-group">
<label>
<strong>Selection style</strong><br/>
<span>Indicate how selections should occur</span>
</label>
<div>
<select data-action="ide-setting"
data-option="selectionStyle"
title="Selection style">
<option value="line">Line</option>
<option value="text">Text</option>
</select>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="form-group">
<label>
<strong>Cursor style</strong><br/>
<span>Indicate the cursor style</span>
</label>
<div>
<select data-action="ide-setting"
data-option="cursorStyle"
title="Cursor style">
<option value="ace">Ace</option>
<option value="slim">Slim</option>
<option value="smooth">Smooth</option>
<option value="wide">Wide</option>
</select>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="form-group">
<label>
<strong>Newline format</strong><br/>
<span>Format to use on new lines</span>
</label>
<div>
<select data-action="ide-setting"
data-option="newLineMode"
title="Newline format">
<option value="auto">Auto</option>
<option value="unix">Unix</option>
<option value="windows">Windows</option>
</select>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="form-group">
<label>
<strong>Highlight active line</strong><br/>
<span>Highlight the current active line</span>
</label>
<div class="switch">
<input id="highlightActiveLine"
data-action="ide-setting"
data-option="highlightActiveLine"
class="cmn-tgl cmn-tgl-rnd-flt"
type="checkbox"/>
<label for="highlightActiveLine"></label>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="form-group">
<label>
<strong>Line numbering</strong><br/>
<span>Display line numbers in the editor</span>
</label>
<div class="switch">
<input id="showGutter"
data-action="ide-setting"
data-option="showGutter"
class="cmn-tgl cmn-tgl-rnd-flt"
type="checkbox"/>
<label for="showGutter"></label>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="form-group">
<label>
<strong>Invisible characters</strong><br/>
<span>Display helper symbols for tabs, spaces etc.</span>
</label>
<div class="switch">
<input id="showInvisibles"
data-action="ide-setting"
data-option="showInvisibles"
class="cmn-tgl cmn-tgl-rnd-flt"
type="checkbox"/>
<label for="showInvisibles"></label>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="form-group">
<label>
<strong>Indentation guides</strong><br/>
<span>Display vertical indentation guides in the editor</span>
</label>
<div class="switch">
<input id="displayIndentGuides"
data-action="ide-setting"
data-option="displayIndentGuides"
class="cmn-tgl cmn-tgl-rnd-flt"
type="checkbox"/>
<label for="displayIndentGuides"></label>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="form-group">
<label>
<strong>Soft tabs</strong><br/>
<span>Soft tabs instead of standard tabs</span>
</label>
<div class="switch">
<input id="useSoftTabs"
data-action="ide-setting"
data-option="useSoftTabs"
class="cmn-tgl cmn-tgl-rnd-flt"
type="checkbox"/>
<label for="useSoftTabs"></label>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="form-group">
<label>
<strong>Word wrap</strong><br/>
<span>Enable word wrapping on long lines</span>
</label>
<div class="switch">
<input id="wrapBehavioursEnabled"
data-action="ide-setting"
data-option="wrapBehavioursEnabled"
class="cmn-tgl cmn-tgl-rnd-flt"
type="checkbox"/>
<label for="wrapBehavioursEnabled"></label>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="form-group">
<label>
<strong>Allow over-scroll</strong><br/>
<span>Scroll past the end of a document</span>
</label>
<div class="switch">
<input id="scrollPastEnd"
data-action="ide-setting"
data-option="scrollPastEnd"
class="cmn-tgl cmn-tgl-rnd-flt"
type="checkbox"/>
<label for="scrollPastEnd"></label>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="form-group">
<label>
<strong>Tab size</strong><br/>
<span>Number of columns per tab</span>
</label>
<div class="range-slider">
<input id="tabSize"
data-toggle="tooltip"
data-action="ide-setting"
data-option="tabSize"
class="range-slider-range"
type="range"
min="1"
max="8"
step="1"
title="Tab size"/>
<label for="tabSize"
title="Default: 4, Current: 4">4</label>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="form-group">
<label>
<strong>Word wrap limit</strong><br/>
<span>Number of characters per line before wrapping</span>
</label>
<div class="range-slider">
<input id="wrap"
data-toggle="tooltip"
data-action="ide-setting"
data-option="wrap"
class="range-slider-range"
type="range"
min="0"
max="128"
step="1"
title="Word wrap limit"/>
<label for="wrap"
title="Default: 68, Current: 68">68</label>
</div>
</div>
</div>
</div>
</div>