Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from neoclide:master #249

Merged
merged 3 commits into from
Feb 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 31 additions & 9 deletions data/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -598,13 +598,22 @@
"scope": "application",
"default": "never",
"description": "Interval for check extension update, could be daily, weekly, never",
"deprecationMessage": "Use configuration 'extensions.updateCheck' instead.",
"enum": ["daily", "weekly", "never"]
},
"coc.preferences.extensionUpdateUIInTab": {
"type": "boolean",
"scope": "application",
"default": false,
"description": "Display extension updating UI in vim tab"
"deprecationMessage": "Use configuration 'extensions.updateUIInTab' instead.",
"description": "Display extension updating UI in new vim tab"
},
"coc.preferences.silentAutoupdate": {
"type": "boolean",
"description": "Not open split window with update status when performing auto update.",
"deprecationMessage": "Use configuration 'extensions.silentAutoupdate' instead.",
"scope": "application",
"default": true
},
"coc.preferences.floatActions": {
"type": "boolean",
Expand All @@ -631,7 +640,7 @@
"scope": "resource",
"default": null,
"description": "Filetypes that should run format on save.",
"deprecationMessage": "Use coc.preferences.formatOnSave as language override configuration instead, see :h coc-configuration-scope",
"deprecationMessage": "Use 'coc.preferences.formatOnSave' as language override configuration instead, see :h coc-configuration-scope",
"items": {
"type": "string"
}
Expand All @@ -647,7 +656,7 @@
"default": null,
"scope": "resource",
"description": "Filetypes that should run format on typing, only works when `coc.preferences.formatOnType` is `true`",
"deprecationMessage": "Use coc.preferences.formatOnType as language override configuration instead, see :h coc-configuration-scope",
"deprecationMessage": "Use 'coc.preferences.formatOnType' as language override configuration instead, see :h coc-configuration-scope",
"items": {
"type": "string"
}
Expand Down Expand Up @@ -703,12 +712,6 @@
"default": true,
"description": "Disable to stop Refactor-Rename float/popup window from populating with old name in the New Name field."
},
"coc.preferences.silentAutoupdate": {
"type": "boolean",
"description": "Not open split window with update status when performing auto update.",
"scope": "application",
"default": true
},
"coc.preferences.useQuickfixForLocations": {
"type": "boolean",
"scope": "application",
Expand Down Expand Up @@ -1352,6 +1355,25 @@
"default": true,
"scope": "application"
},
"extensions.updateCheck": {
"type": "string",
"scope": "application",
"default": "never",
"description": "Interval time for check extension update, could be daily, weekly, never",
"enum": ["daily", "weekly", "never"]
},
"extensions.silentAutoupdate": {
"type": "boolean",
"description": "Not open split window with update status when performing auto update.",
"scope": "application",
"default": true
},
"extensions.updateUIInTab": {
"type": "boolean",
"scope": "application",
"default": false,
"description": "Display extension updating UI in new vim tab"
},
"inlayHint.enable": {
"type": "boolean",
"default": true,
Expand Down
Loading
Loading