You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An issue to write down ideas or requests for what options should be included.
As a starting point I imagine that the JSON structure will hold 'general' settings in one key and language-specific overrides (empty by default) in all the following keys.
The settings will be further subdivided by the LSP function. Possibly like that:
{"general": {"inspections": {},"autocompletion": {"auto-invoke": true,"invoke-after-any": false},"highlight-on-cursor": {}},"python": {"inspections": {"ignore": ["E222"]},// specific functions can be disabled by the user by setting false// (or maybe 'disable'?)"highlight-on-cursor": false}}
Edit - other settings worth to include:
whether to display the documentation in the signature suggestion
magic overrides
foreign code extractors (regular expressions)
modifier key for the hover action
the default inspections severity (when server does not provide one)
The text was updated successfully, but these errors were encountered:
An issue to write down ideas or requests for what options should be included.
As a starting point I imagine that the JSON structure will hold 'general' settings in one key and language-specific overrides (empty by default) in all the following keys.
The settings will be further subdivided by the LSP function. Possibly like that:
Edit - other settings worth to include:
The text was updated successfully, but these errors were encountered: