Defining Preferences
Defining preference schema
var javaPreferences = {
id: "java",
name: "Java",
schema: {
"java.gen": {
text: "Java Code Generation",
type: "section"
},
"java.gen.useTab": {
text: "Use Tab",
description: "Use Tab for indentation instead of spaces.",
type: "check",
default: false
},
"java.gen.indentSpaces": {
text: "Indent Spaces",
description: "Number of spaces for indentation.",
type: "number",
default: 4
},
...
}
}
...
app.preferences.register(javaPreferences)