We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
How is it possible to disable folding blocks within code comments?
// Code Comments e.SetFoldingMarkers(@"/\*(.*)", @"\*/", RegexOptions.Multiline | RegexOptions.Singleline | RegexOptions.IgnoreCase); // Example Code e.SetFoldingMarkers(@"foo", @"bar", RegexOptions.Multiline | RegexOptions.Singleline | RegexOptions.IgnoreCase);
There should not be any folding markers against foo-bar within /* */ comments, .i.e:
/* foo bar */
I want to avoid using RegEx Lookbehind and Lookaheads, as this is likely to cause performance issues.
What would be the best approach?
The bug exists within the PowerfulCSharpEditor example provided:
Any help or suggestions would be greatly appreciated, as I would like to give my end-users the best user experience possible,
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
How is it possible to disable folding blocks within code comments?
There should not be any folding markers against foo-bar within /* */ comments, .i.e:
/*
foo
bar
*/
I want to avoid using RegEx Lookbehind and Lookaheads, as this is likely to cause performance issues.
What would be the best approach?
The bug exists within the PowerfulCSharpEditor example provided:
Any help or suggestions would be greatly appreciated, as I would like to give my end-users the best user experience possible,
The text was updated successfully, but these errors were encountered: