Skip to content

Commit 2bf9429

Browse files
committed
Added configs for line numbering
1 parent cac348e commit 2bf9429

1 file changed

Lines changed: 49 additions & 0 deletions

File tree

package.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,55 @@
210210
],
211211
"markdownDescription": "Configure Units for G-Code Files. Choose Auto to have G-Code parse for ```G20/G21```"
212212
},
213+
"gcode.general.outputLevel": {
214+
"type": "string",
215+
"default": "verbose",
216+
"enum": [
217+
"silent",
218+
"errors",
219+
"verbose",
220+
"debug"
221+
],
222+
"enumDescriptions": [
223+
"No Output",
224+
"Outputs only Errors",
225+
"Outputs all errors, warnings and messages",
226+
"Outputs Everything for Debugging Purposes"
227+
],
228+
"markdownDescription": "Specifies how much output will be sent to the G-Code Output Channel.",
229+
"scope": "window"
230+
},
231+
"gcode.lineNumberer.addSpaceAfter": {
232+
"type": "boolean",
233+
"default": true,
234+
"markdownDescription": "Add Space After Line Number",
235+
"scope": "window"
236+
},
237+
"gcode.lineNumberer.frequency": {
238+
"type": "string",
239+
"default": "Every Line",
240+
"enum": [
241+
"Every Line",
242+
"At Tool Changes"
243+
],
244+
"enumDescriptions": [
245+
"Line Number at Every Line",
246+
"Line Number only at Tool Changes"
247+
],
248+
"markdownDescription": "Specify Frequency of Line Numbering"
249+
},
250+
"gcode.lineNumberer.ignoreBlank": {
251+
"type": "boolean",
252+
"default": true,
253+
"markdownDescription": "Ignore Blank Lines when Numbering",
254+
"scope": "window"
255+
},
256+
"gcode.lineNumberer.ignoreProgramNumbers": {
257+
"type": "boolean",
258+
"default": true,
259+
"markdownDescription": "Ignore program numbers, e.g. `O12345`",
260+
"scope": "window"
261+
},
213262
"gcode.views.maxAutoRefresh": {
214263
"type": "integer",
215264
"default": "10000",

0 commit comments

Comments
 (0)