Completed
Last Updated: 13 Mar 2024 09:45 by ADMIN
Release 2024.1.130 (2024 Q1)
Created by: Felix
Comments: 0
Category: SyntaxEditor
Type: Feature Request
4
Currently the Caret of the SyntaxEditor does not behave like Caret in MS TextBox/ RichTextBox when IME is opened - IME opens on the bottom right part of the screen instead of below the caret. Also some input issues when selection is done in the IME should be addressed for a full support of this feature.
Completed
Last Updated: 13 Jul 2023 08:43 by ADMIN
Release R2 2023 SP1
Created by: Martin Ivanov
Comments: 0
Category: SyntaxEditor
Type: Feature Request
1

Localize the tooltips for the match case button, the match word button and the use regular expression button.

Currently, the tooltips of the buttons are using hardcoded strings in English.

To translate the tooltips, you can get the corresponding buttons on load of the syntax editor control and replace their tooltips manually.

private void syntaxEditor_Loaded(object sender, RoutedEventArgs e)
{
	var buttons = this.syntaxEditor.ChildrenOfType<RadToggleButton>();
	var matchCaseButton = buttons.FirstOrDefault(x => x.Name == "PART_MatchCaseButton");
	var matchWordButton = buttons.FirstOrDefault(x => x.Name == "PART_MatchWordButton");
	var useRegularExpressionsButton = buttons.FirstOrDefault(x => x.Name == "PART_UseRegularExpressionsButton");

	matchCaseButton.ToolTip = CreateToolTip("SyntaxEditor_MatchCase"); // these are custom localization resource keys that should be manually defined by the developer that uses this solution
	matchWordButton.ToolTip = CreateToolTip("SyntaxEditor_MatchWord");
	useRegularExpressionsButton.ToolTip = CreateToolTip("SyntaxEditor_UseRegularExpressions");
}

private static ToolTip CreateToolTip(string resourceKey)
{
	var toolTip = new ToolTip();
	toolTip.Content = LocalizationManager.Manager.GetStringOverride(resourceKey);
	return toolTip;
}

Completed
Last Updated: 27 Apr 2023 07:51 by ADMIN
Release R2 2023

Good morning,

can You implement in one of the next releases the regex and case sensitive search? I provided you the Visual Studio 2019 search screenshot

Completed
Last Updated: 08 Sep 2022 15:41 by ADMIN
Release R3 2022
Created by: Petar
Comments: 1
Category: SyntaxEditor
Type: Feature Request
21
Add ability to disable horizontal scrollbar and enable word wrapping - fixed width of editor and if the word cannot fit - it is moved to next line.
Completed
Last Updated: 29 Jun 2022 07:24 by ADMIN
Release LIB 2022.2.704 (04 July 2022)
Expose API to control the FontWeight and FontStyle of the highlighted words.
Completed
Last Updated: 31 May 2021 08:01 by ADMIN
Release LIB 2020.2.406 (04/06/2020)
A message could be shown when using the Find mechanism, and you reach the end of the file or the starting point of the search. 
Completed
Last Updated: 08 Dec 2020 14:43 by ADMIN
Release LIB 2020.3.1214
Created by: Petar
Comments: 0
Category: SyntaxEditor
Type: Feature Request
10

Adding breakpoints (markers) to particular lines in code should be possible.

Should be doable via UI or in code. Collection of all breakpoints should be accessible in code too.

Completed
Last Updated: 04 Nov 2020 16:03 by ADMIN
Release LIB 2020.3.1109 (11/09/2020)
Created by: Andrea.Gasparini
Comments: 0
Category: SyntaxEditor
Type: Feature Request
3
Expose a property to control the width of the search panel as the buttons may get clipped if their text is too long.
Completed
Last Updated: 01 Jul 2020 10:19 by ADMIN
Release LIB 2020.1.302 (02/03/2020)
Introduce a property to control whether the matching of the start and end folding tags is case sensitive or not.
Completed
Last Updated: 30 Apr 2020 06:46 by ADMIN
Release R2 2020
Currently the strings are not colored in C#, VB, JS documents working with CSharpTagger, JavaScriptTagger, VisualBasicTagger. Make the strings colored out of the box.
Completed
Last Updated: 27 Nov 2019 14:30 by ADMIN
Release R1 2020
Add separate folding tagger class for creating folding (collapsible) regions in XML, XAML, HTML code files.