Siegfried Pammer

Results 199 comments of Siegfried Pammer

Just for the record: * Visual Studio does support this * Notepad++ does not support this

See https://github.com/icsharpcode/AvalonEdit/discussions/327#discussioncomment-1873085 as GitHub does not add a reference to the discussion apparently.

This should work: ```xml ``` > Or maybe can someone explain how the xshd will be interpreted? What happens when two rules try to colorize text? Will the first or...

The fundamental problem you are hitting here is that you try to implement semantic highlighting through the use of regular expressions. This is generally not possible and Visual Studio and...

I fail to understand what purpose moving the calls to `OnScrollChange()` from the `IScrollInfo.MouseWheel*` handlers to the `SetVerticalOffset`/`SetHorizontalOffset` methods serves. This pull request does not change anything related to the...

var handler = (TextAreaDefaultInputHandler)textEditor.TextArea.ActiveInputHandler; handler.Detach(); RemoveBinding(ApplicationCommands.Undo); RemoveBinding(ApplicationCommands.Redo); handler.Attach(); void RemoveBinding(ICommand command) { foreach (var binding in handler.InputBindings.ToList()) { if (binding.Command == command) handler.InputBindings.Remove(binding); } foreach (var binding in handler.CommandBindings.ToList()) {...

When creating a rectangular selection you first press [Alt] and then use the mouse or the keyboard to select text. When [Alt] is first pressed, we can't and shouldn't mark...

AvalonEdit uses a standard WPF `ScrollViewer` without any modifications. Do other .NET applications/controls using `ScrollViewer` work as expected?

Would it be possible for you to provide step by step instructions on how to reproduce this? Thank you very much!

Would you still be interested/able to provide your changes as a pull request?