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

Codist Beta 7.3 #251

Closed
23 tasks done
wmjordan opened this issue Apr 1, 2023 · 54 comments
Closed
23 tasks done

Codist Beta 7.3 #251

wmjordan opened this issue Apr 1, 2023 · 54 comments
Assignees
Labels
💾 have download

Comments

@wmjordan
Copy link
Owner

wmjordan commented Apr 1, 2023

Download

Codist 8534

Codist 8524
Codist 8514
Codist 8501
Codist 8495
Codist 8493
Codist 8484
Codist 8477
Codist 8466
Codist 8461
Codist 8448

What's New

  • General
    • A new icon for Codist (with a Chinese character meaning "Code")
    • Displayed C# Property parameter types in symbol tool tips and symbol menu
    • Used specific icons for C# explicitly implemented interface members
  • Super Quick Info
  • Syntax Highlight
    • Used default text color if classification foreground color was not defined
    • Fixed a bug caused memory leak and performance deterioration
    • Fixed that underline and strikethrough style could not be properly removed
    • Some syntax highlight styles were not properly rendered
    • Improved highlight for indexers, accessor declarations, LINQ range variables
  • Refactoring
    • Fixed incorrect code produced by ConditionalToIfRefactoring
    • Added a CommentToRegionRefactoring
    • Fixed MultiLineListRefactoring was not working when expression was also an ArgumentSyntax
  • Extension Developer
    • Used an information-rich "Show Active Window Properties" dialog to replace the old Show Document ContentType properties dialog
@wmjordan wmjordan added the 💾 have download label Apr 1, 2023
@wmjordan wmjordan pinned this issue Apr 1, 2023
@DimitarCC
Copy link

Thats cool. I can not test at the moment but looking into the code i understood that you identify the severity of the analyzers issue based on its text. Did i understood right?
Is that mean if you change the severity manually via
.editorconfig it will not detect it?

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 2, 2023

I can not test at the moment but looking into the code i understood that you identify the severity of the analyzers issue based on its text.

Yes, you are right.
I could not find a way to get the warning severity from existing API.
If you know one, please tell me.

@DimitarCC
Copy link

@wmjordan

Yes i have a workaround solution....

image

As you can see this is showing IDE0090 as error. Because in editor config i have
dotnet_diagnostic.IDE0090.severity = error

Its kind of workaround to get the values from the ErrorList service. There you can log all errors with their code and severity.
The bad thing is that it logs all the solution errors in a dictionary
public Dictionary<String, __VSERRORCATEGORY> Diagnostics { get; set; } = new Dictionary<String, __VSERRORCATEGORY>();
And can not really get only the current item or file errors.

So let me know it that suitable for you and i can provide a PR with my current code (it is not optimized but you can get the basic idea).

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 3, 2023

@wmjordan

Yes i have a workaround solution....

I know about that workaround, years ago.

It has limitations. For instance, I usually hide warning and information items in the Error List, thus those items will not be available from the API of the Error List. And it can be slow, if the list is quite long.

Thus I don't want to take it.

@DimitarCC
Copy link

DimitarCC commented Apr 3, 2023

@wmjordan

You are not right about some things....
First of all you can make it to get all information not matter what is displayed in the errorlist (you connect to the datasource and not to the displayed items). I also hide warning and information but that not prevent display in the tooltip.
Getting of errorlist entries is on event so it fill them up only when the error list changes. Yes maybe can be slow when there are several thousands of items. But i tried it with 400 items in the list and i dont see any slowdown. And besides it can be made async so the tooltip will not lack of any performance.

How do you think the Microsoft's extension Solution Error Visualizer works without slowdown? It uses the ErrorList for that.

But ofcource is your choice. :)

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 3, 2023

How do you think the Microsoft's extension Solution Error Visualizer works without slowdown?

It was a story years ago. Solution Error Visualizer was hiding warnings or errors if corresponding filters were disabled while I was using that extension. I no longer used that extension after upgraded to VS 2019 or 2022--I could not remember. Perhaps things got changed in recent versions of VS.

Anyway, I found another way to deal with this problem without the Error List.

@DimitarCC
Copy link

@wmjordan

What is that way? If you dont mind share it.

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 3, 2023

Codist is open-sourced.
The solution will be there if it passes my tests.

@DimitarCC
Copy link

OK. I wanted to know it earlier since i can use it in my other things i am developing, but anyway i will wait then.

@DimitarCC
Copy link

P.S. I hope your way will work even with external analyzers. ErrorList way works with them too ;)

@fitdev
Copy link

fitdev commented Apr 3, 2023

I noticed that recent versions of Codist reset the VS's bracket matching color to barely visible light gray. The fix is to go to VS Options, Fonts and Colors and to change the current color of the bracket matching and bracket matching rectangle to a different color.

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 4, 2023

Codist reset the VS's bracket matching color to barely visible light gray

I don't think Codist is resetting the brace matching color.
I reset the Experimental instance on my computer and disabled Codist. The default color was not vivid at all.

image

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 4, 2023

I hope your way will work even with external analyzers

Yes, it does. Please try the new beta.
image
image
image
Treat warnings as errors:
image

@DimitarCC
Copy link

@wmjordan

Cool. Generally it works. But have some issues...

For example:
image

it show IDE0002 as suggestion.

but it is actually hidden ;)

image

@fitdev
Copy link

fitdev commented Apr 4, 2023

I don't think Codist is resetting the brace matching color.

Sorry about that. I think if I remember correctly you said a few months back that Codist might be doing this and you have fixed the issue, so I thought the issue has appeared again and assumed it to be Codist. I guess it is some kind of VS bug.

@DimitarCC
Copy link

@wmjordan

About the "problem" above with not displaying correct severity....

There is a way to fix that.....

However it involve some reflection since the required properties are not public...

Well you didnt provide the code for your beta but i assume you use IErrorTag to retrieve the info.

But IErrorTag provide publicly only the ErrorType which is different than the severity.

But you can get the severity from a private property that contains DiagnosticData.

in this way you get the correct severity.

image

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 4, 2023

@DimitarCC
Thank you for your kind help.
Never mind.
The public property of IErrorTag should be sufficient.
I will upload a new beta later.

@DimitarCC
Copy link

@wmjordan

But it mistake the severity. If you want the severity it is wrong. If you want to display type only is different story.

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 4, 2023

Don't be afraid.

image

@DimitarCC
Copy link

Well OK.... Still parsing that values from the text of TooltipContent seems not so right. Its much more easier to get it from Severity property of DiagnosticData ;)
Ofcource if you found another way OK :)

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 4, 2023

Please try the new beta which has added more icon types for warning messages.

@DimitarCC
Copy link

Yes i have just tried it...
It works fine for the moment :)
Great work!

@DimitarCC
Copy link

@wmjordan

OK they are some issues...

Sometimes when the diagnostics messages are first in the tooltip it not render icons at all.

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 5, 2023

Sometimes when the diagnostics messages are first in the tooltip it not render icons at all.

Yes, I had met with this situation while I was working with my another project once.
I will try to fix it later when I encounter it once more.

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 6, 2023

@fitdev
Have you tried the new C# Quick Info option that enables displaying containing types of a member?

@DimitarCC
Copy link

@wmjordan

I have found something else...
About syntax highlighting for the entries that default have line defined it is not possible to remove the line not matter what you do.
For example if i want to remove the line from extension methods, i cant.

@fitdev
Copy link

fitdev commented Apr 6, 2023

Have you tried the new C# Quick Info option that enables displaying containing types of a member?

Yes, it is really nice! Exactly what I was hoping for! Thank you for your work! The only suggestion is that it would be great if there was a way to visually distinguish some identifiers from regular xml doc text, because often for things like method names or property names, the font style is the same as regular text. Perhaps text editor's default font may be used for that?

@wmjordan wmjordan self-assigned this Apr 6, 2023
@wmjordan
Copy link
Owner Author

wmjordan commented Apr 6, 2023

it is not possible to remove the line not matter what you do

@DimitarCC
Please download the new beta version, which should have this problem fixed.

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 6, 2023

visually distinguish some identifiers from regular xml doc text, because often for things like method names or property names, the font style is the same as regular text

@fitdev
Hmm, I never expect this issue since I usually write my XML Doc majorly in Chinese, and member/type names in English, they distinguish each other quite well :) And I assign various colors for members, thus their colors differ against regular text.

@fitdev
Copy link

fitdev commented Apr 6, 2023

Hmm, I never expect this issue since I usually write my XML Doc majorly in Chinese...

Yes, I agree, in your case they would look quite different and provide good contrast :), but not in my case...

Screenshot_20230406_140349

As you can see EnableVisualStyles and SettingKeyForDSA look practically indistinguishable from text. So, perhaps there should be an option to render all <see cref="..." />-based identifiers in monospace font (ideally the one set in Visual Studio). This way the other styles like colors and font styles would be preserved, but yet the identifiers themselves would be differentiated from the main text.

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 7, 2023

@fitdev
I understand your request.
However, it is not so easy to elegantly change the typeface of the <see/> symbols at this moment.
I will try to see whether there's a better way to do so.

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 7, 2023

Sometimes when the diagnostics messages are first in the tooltip it not render icons at all.

@DimitarCC
This issue has been fixed in beta 8484.

@DimitarCC
Copy link

Sometimes when the diagnostics messages are first in the tooltip it not render icons at all.

@DimitarCC This issue has been fixed in beta 8484.

Well not really. It still doesnt work in some cases

image

@DimitarCC
Copy link

it is not possible to remove the line not matter what you do

@DimitarCC Please download the new beta version, which should have this problem fixed.

Now i can remove underline but can not ever return it back. So i ended up with no underlines at all.
Is it a special way to do so?
If i check underline checkbox it shows line under but it not respond to line offset at all.

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 7, 2023

Well not really. It still doesnt work in some cases

Sorry to see that. However, I could not find a way to reproduce this.

If i check underline checkbox it shows line under but it not respond to line offset at all.

There's a logical mistake in the configuration window. I will fix it later.

@DimitarCC
Copy link

DimitarCC commented Apr 7, 2023

Well not really. It still doesnt work in some cases

Sorry to see that. However, I could not find a way to reproduce this.

It is easy reproducible with your TestProgect2 -> CS11_0.cs -> line 66 end space (look at my screenshot before)

image

The error comes here

image

Because you loop over it from index 1 but the diagnostics info is in index 0.

Maybe before there is some miss. I just track it till here.
I tested with quick fix to take it from index 0 and it works.

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 7, 2023

The error comes here

Yes, I have fixed that.
In beta 8484, the start index is always 0.
Are you using that version?

@DimitarCC
Copy link

DimitarCC commented Apr 7, 2023

I am using the latest code that you have committed before 9h (i have build it myself because i would like to change some icons you have used ;))
Is the code different than version 8484?

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 7, 2023

I am using the latest code that you have committed before 9h (i have build it myself because i would like to change some icons you have used ;)) Is the code different than version 8484?

Yes.
The latest code might not be always in sync with the beta.

What kind of icons have you changed?

@DimitarCC
Copy link

aha. OK.

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 8, 2023

@fitdev

I found a way to display the code symbols with the editor font in Quick Info.
Here's how it may appears.

image

Only the XML Doc part will use the code editor font.

@fitdev
Copy link

fitdev commented Apr 8, 2023

Only the XML Doc part will use the code editor font.

That's great! Exactly what I was hoping for!

@wmjordan
Copy link
Owner Author

wmjordan commented Apr 9, 2023

Only the XML Doc part will use the code editor font.

That's great! Exactly what I was hoping for!

@fitdev Please test the new beta.

@fitdev
Copy link

fitdev commented Apr 9, 2023

Works really well! Thank you so much for your work!

@wmjordan
Copy link
Owner Author

The previous beta versions could cause some errors while editing code files.
Please download the new beta.

@fitdev
Copy link

fitdev commented Apr 12, 2023

Using the latest beta and latest VS Preview 17.6 Preview 3, I got a crash when interacting with NaviBar:

Application: devenv.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.NullReferenceException
   at Codist.NaviBar.CSharpBar+NodeItem.<get_Symbol>b__16_0()
   at Microsoft.VisualStudio.Threading.JoinableTaskFactory.ExecuteJob[[System.__Canon, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]](System.Func`1<System.Threading.Tasks.Task>, Microsoft.VisualStudio.Threading.JoinableTask)
   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(System.Threading.Tasks.Task)
   at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()
   at Microsoft.VisualStudio.Threading.JoinableTask`1[[System.__Canon, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]].CompleteOnCurrentThread()
   at Codist.SyncHelper.RunSync[[System.__Canon, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]](System.Func`1<System.Threading.Tasks.Task`1<System.__Canon>>)
   at Codist.NaviBar.CSharpBar+NodeItem.get_Symbol()
   at Codist.NaviBar.CSharpBar+NodeItem.OnToolTipOpening(System.Windows.Controls.ToolTipEventArgs)
   at System.Windows.RoutedEventArgs.InvokeHandler(System.Delegate, System.Object)
   at System.Windows.RoutedEventHandlerInfo.InvokeHandler(System.Object, System.Windows.RoutedEventArgs)
   at System.Windows.EventRoute.InvokeHandlersImpl(System.Object, System.Windows.RoutedEventArgs, Boolean)
   at System.Windows.UIElement.RaiseEventImpl(System.Windows.DependencyObject, System.Windows.RoutedEventArgs)
   at System.Windows.Controls.PopupControlService.ShowToolTip(System.Windows.DependencyObject, Boolean)
   at System.Windows.Controls.PopupControlService.PromotePendingToolTipToCurrent(TriggerAction)
   at System.Windows.Threading.DispatcherTimer.FireTick(System.Object)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32)
   at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
   at System.Windows.Threading.DispatcherOperation.InvokeImpl()
   at MS.Internal.CulturePreservingExecutionContext.CallbackWrapper(System.Object)
   at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
   at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
   at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
   at MS.Internal.CulturePreservingExecutionContext.Run(MS.Internal.CulturePreservingExecutionContext, System.Threading.ContextCallback, System.Object)
   at System.Windows.Threading.DispatcherOperation.Invoke()
   at System.Windows.Threading.Dispatcher.ProcessQueue()
   at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
   at MS.Win32.HwndWrapper.WndProc(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
   at MS.Win32.HwndSubclass.DispatcherCallbackOperation(System.Object)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32)
   at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
   at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(System.Windows.Threading.DispatcherPriority, System.TimeSpan, System.Delegate, System.Object, Int32)
   at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr, Int32, IntPtr, IntPtr)

@wmjordan
Copy link
Owner Author

@fitdev
Could you reproduce this issue and find out the particular code which causes this?

@fitdev
Copy link

fitdev commented Apr 13, 2023

It happened once only when I was either clicking on it to get a dropdown menu or when I started typing in the search field in the resx designer generated cs file.

@wmjordan
Copy link
Owner Author

@fitdev
It should be a very rare case.
Please download the new beta and see whether the problem persists.

@wmjordan
Copy link
Owner Author

A new version is about to be publicly released.
Please help test this beta version.

@fitdev
Copy link

fitdev commented Apr 15, 2023

I noticed that the beta sometimes causes document syntax highlighting to momentarily (for a split-second) revert to VS's default when typing in the editor in the latest VS preview. Did not see it happen before.

@wmjordan
Copy link
Owner Author

I noticed that the beta sometimes causes document syntax highlighting to momentarily (for a split-second) revert to VS's default when typing in the editor in the latest VS preview. Did not see it happen before.

Thank you for reporting this.
I managed to reproduce it.
Please try the new beta.

The new beta has also improved C# Quick Info to display info about LINQ expressions, and Super Syntax Highlight to highlight some brackets, operators and punctuations (part of #93).

@fitdev
Copy link

fitdev commented Apr 16, 2023

Thank you so much for a quick fix! So far it works a lot better and editor seems a lot more performant!

@wmjordan wmjordan unpinned this issue Apr 18, 2023
@wmjordan
Copy link
Owner Author

The new version was just released.
Thank you all my friends for your wonderful feedback!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
💾 have download
Projects
None yet
Development

No branches or pull requests

3 participants