David Wengier
David Wengier
https://github.com/dotnet/razor/pull/10959 marks an integration test as skipped referencing this issue. Please unskip when fixing :)
This probably won't be possible until https://github.com/dotnet/razor/pull/9062 is in, as we don't have good source mapping for bind:after attributes at the moment.
I looked into making the official "View Code" and "View Designer" menu items work for project files to enable the keyboard shortcuts in #3968 but is far from simple. A...
Note to self: Look at Microsoft.VisualStudio.ProjectSystem.VS.Implementation.Package.Commands.DefaultStandardCommandSet97Handler, which currently uses the File scoped DocumentManager, but maybe can use the ProjectFile scoped one too?
Also reported at https://developercommunity.visualstudio.com/t/Syntax-highlighting-broken-in-Razor-page/10613045 Managed to reproduce this, and have been scouring through the logs. Seems like a combination of copying a file, pasting it (and having VS automatically open...
Interestingly this only repros for me if I copy and paste the file with the mouse. Mainly noting this down for future reference so I don't go mad trying to...
@frank-reboira Unfortunately I can't repro those errors, even using the same formatting operation on the same file. Could I trouble you to grab some extra logs of the formatting operation,...
Thanks @frank-reboira those were really useful. I think you're hitting this bug: https://github.com/dotnet/razor/issues/11846#issuecomment-2864922878 Can you try going to Settings in VS Code, search for "wrap", and set "HTML > Format:...
I would love this! `@inherits` also does this, and completely stopped me from being able to improve tooling for it in https://github.com/dotnet/razor/pull/9176
Simplified repro: ``` @(Goo.Bar().Baz(new Zig {$$ })) ``` With the cursor at `$$`, press Enter.