-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Colon-triggered block formatter and line formatter do not coexist #2714
Comments
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. |
Please do publish a PR, or point us to the solution.
We can write the tests if you aren't planning on doing. If you aren't, then please do create an issue, so we do not forget about it. Thanks |
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: