Skip to content

Commit

Permalink
Add document symbols settings
Browse files Browse the repository at this point in the history
  • Loading branch information
niksy committed Dec 7, 2024
1 parent fceb84e commit de3af31
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions LSP-some-sass.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"somesass.css.colors.includeFromCurrentDocument": true,
"somesass.css.definition.enabled": true,
"somesass.css.diagnostics.enabled": true,
"somesass.css.documentSymbols.enabled": true,
"somesass.css.diagnostics.deprecation.enabled": true,
"somesass.css.diagnostics.lint.enabled": true,
"somesass.css.diagnostics.lint.compatibleVendorPrefixes": "ignore",
Expand Down Expand Up @@ -59,6 +60,7 @@
"somesass.scss.colors.includeFromCurrentDocument": true,
"somesass.scss.definition.enabled": true,
"somesass.scss.diagnostics.enabled": true,
"somesass.scss.documentSymbols.enabled": true,
"somesass.scss.diagnostics.deprecation.enabled": true,
"somesass.scss.diagnostics.lint.enabled": true,
"somesass.scss.diagnostics.lint.compatibleVendorPrefixes": "ignore",
Expand Down Expand Up @@ -105,6 +107,7 @@
"somesass.sass.colors.includeFromCurrentDocument": true,
"somesass.sass.definition.enabled": true,
"somesass.sass.diagnostics.enabled": true,
"somesass.sass.documentSymbols.enabled": true,
"somesass.sass.diagnostics.deprecation.enabled": true,
"somesass.sass.diagnostics.lint.enabled": true,
"somesass.sass.diagnostics.lint.compatibleVendorPrefixes": "ignore",
Expand Down
15 changes: 15 additions & 0 deletions sublime-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,11 @@
"enum": ["ignore", "warning", "error"],
"type": "string"
},
"somesass.scss.documentSymbols.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable document symbols."
},
"somesass.scss.foldingRanges.enabled": {
"type": "boolean",
"default": true,
Expand Down Expand Up @@ -523,6 +528,11 @@
"enum": ["ignore", "warning", "error"],
"type": "string"
},
"somesass.sass.documentSymbols.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable document symbols."
},
"somesass.sass.foldingRanges.enabled": {
"type": "boolean",
"default": true,
Expand Down Expand Up @@ -773,6 +783,11 @@
"enum": ["ignore", "warning", "error"],
"type": "string"
},
"somesass.css.documentSymbols.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable document symbols."
},
"somesass.css.foldingRanges.enabled": {
"type": "boolean",
"default": true,
Expand Down

0 comments on commit de3af31

Please sign in to comment.