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
In working on the line formatter (#2690), I discovered the registration of the OnEnterFormater overrides the registration of BlockFormatProviders in extension.ts.
The current code looks like this (after the introduction of the second line in #649):
The last registration appears to take precedence, so you can hit enter to format a line, but if you type a :, nothing happens, say after the else in this example:
ifx:
passelse
If you swap the registration order so that BlockFormatProviders comes last, line formatting no longer works, but hitting : in the above code gets reformatted into:
ifx:
passelse:
I think this may be the cause of (or at least fix) #771, since you hit : after else before you would hit enter, meaning that the else would have already been moved left to the correct position.
The documentation for registerOnTypeFormattingEditProvider states that multiple providers can be registered, and will be selected based on a "score". If the score is the same, then the last one wins, which is what is happening here. The "first" trigger character differing between two registrations doesn't seem to matter. The solution is probably to make a single OnTypeFormattingEditProvider which then dispatches based on the trigger character, like:
I have a working fix in a branch on my fork, but I haven't implemented the tests for the new code yet.
It'd probably also be a good idea to write some tests to ensure that this sort of thing doesn't happen again. @DonJayamanne mentioned to me that this is probably a consequence of only testing the individual parts and not together.
For #2690.
Similar to #2612. Note that `:`-based formatting isn't implemented in language server yet (microsoft/python-language-server#165), but it hasn't been enabled in the extension for anyone for a while now either (fixed in #2714/#2724).
Since line formatting is relatively new in language server, this likely shouldn't make it out into a release until the language server downloaded by default is new enough to include that functionality. I haven't been monitoring that side of things, so feel free to hold off on merging this until the right time.
In working on the line formatter (#2690), I discovered the registration of the
OnEnterFormater
overrides the registration ofBlockFormatProviders
inextension.ts
.The current code looks like this (after the introduction of the second line in #649):
The last registration appears to take precedence, so you can hit enter to format a line, but if you type a
:
, nothing happens, say after theelse
in this example:If you swap the registration order so that
BlockFormatProviders
comes last, line formatting no longer works, but hitting:
in the above code gets reformatted into:I think this may be the cause of (or at least fix) #771, since you hit
:
afterelse
before you would hit enter, meaning that theelse
would have already been moved left to the correct position.The documentation for
registerOnTypeFormattingEditProvider
states that multiple providers can be registered, and will be selected based on a "score". If the score is the same, then the last one wins, which is what is happening here. The "first" trigger character differing between two registrations doesn't seem to matter. The solution is probably to make a singleOnTypeFormattingEditProvider
which then dispatches based on the trigger character, like:The text was updated successfully, but these errors were encountered: