Unplanned
Last Updated: 13 Mar 2025 09:42 by Dariush
Steps to Reproduce:
--Install Bopomofo or Quick input method (Traditional Chinese).
--Open the Telerik SyntaxEditor in a WPF application.
--In any text input field, enter an Alt code (e.g., Alt+0160 for a non-breaking space).
--Attempt to type any Chinese characters immediately after entering the Alt code.

Current Behavior:
  -Bopomofo IME:
    -- The user cannot type any Chinese characters after entering an Alt code.
    -- Switching the language (e.g., pressing Shift) allows English input, but Chinese input remains blocked.

Quick IME:
   -The input method automatically switches to English after entering an Alt code.
   -The language indicator still shows Chinese, but characters typed are in English.
   T-o resume Chinese input, the user must click another text field, alt-tab to another window, then return.

Expected Behavior:
   -Users should be able to continue typing Chinese characters after entering Alt codes without needing to manually switch inputs.
   -The IME state should remain consistent, allowing uninterrupted input.
Unplanned
Last Updated: 24 Feb 2025 15:58 by Martin Ivanov
The CSharpTagger matches the following character combination as a multiline comment start - / * (slash and a start with a whitespace between). This causes wrong tags creation in scenarios where the * character is a part of a single line comment. The correct comment start and end should be /* and */.

In the following example, the beginning of the first single line comment is considered a multiline comment start, but since nothing closes it, the entire text is tagged and colored as a comment.

// ***********************************************************************
// some other content here
// some other content here
// ***********************************************************************

public class TestClass
{
}

Unplanned
Last Updated: 23 Dec 2024 11:47 by Martin Ivanov
Add option to enable indent guides (vertical lines) between the code lines in the SyntaxEditor. 
Unplanned
Last Updated: 01 Nov 2024 09:13 by Dariush
Created by: Dariush
Comments: 0
Category: SyntaxEditor
Type: Feature Request
1
Add spellcheck as you type feature.
Unplanned
Last Updated: 28 Oct 2024 10:31 by Vladimir
When the EditorFontFamily is set to SegoeUI the RadSyntaxEditor can be placed over letters when changing it position.
Unplanned
Last Updated: 22 Nov 2023 14:33 by Richard
Created by: Petar
Comments: 4
Category: SyntaxEditor
Type: Feature Request
11
Add dependency property for showing/hiding the line numbers on the left of the source code.
Unplanned
Last Updated: 03 Nov 2023 09:23 by Stenly
We could introduce API for customizing the folding region lines and their respective regions. For example, a customization could be hover-coloring of line regions, like in the latest VS:

Unplanned
Last Updated: 06 May 2022 10:57 by Stenly
Created by: Stenly
Comments: 0
Category: SyntaxEditor
Type: Feature Request
2
Currently, the RadSyntaxEditor control does not have an out-of-the-box printing functionality.
Unplanned
Last Updated: 02 May 2022 11:58 by Greg
Created by: Stenly
Comments: 1
Category: SyntaxEditor
Type: Feature Request
1
Add functionality for precise positioning of the popups inside the RadSyntaxEditor control.
Unplanned
Last Updated: 18 Nov 2021 10:32 by ADMIN

When using XML Tagger, XML Folding tagger with XML text document, the folding tagger freezes the UI while typing.
Generally in Visual Studio, the XML Folding tagger is processed in background while in SyntaxEditor this is done on the UI thread.
Several optimization options might be applied:

    - process xml folding in background

    - process folding similar to process search while typing - a period of inactivity time is needed to invalidate the search / folding

   - caching - if the edit does not change the folding configuration, no processing and redrawing of folding is required

  - some parts for extracting tooltip content and folded content should be optimized

Unplanned
Last Updated: 20 Apr 2021 11:12 by ADMIN
Created by: Robby
Comments: 1
Category: SyntaxEditor
Type: Feature Request
2

We want to have the option to replace texts only in a selected part of the document. 

Use Notepad++ as a reference to check this feature.

Unplanned
Last Updated: 10 Jul 2020 10:03 by ADMIN
Foldings are incorrect when there is a missing open or close tag.
Unplanned
Last Updated: 30 Jun 2020 11:52 by ADMIN
Currently, if you load a big .xml file with big number of tags, the XmlFoldingTagger takes a lot of time to execute its logic. Improve the performance in those situations.
Unplanned
Last Updated: 13 Feb 2020 14:00 by ADMIN
Created by: Troy
Comments: 1
Category: SyntaxEditor
Type: Feature Request
2

I do have some feedback on this component. I love it, but of course there are some areas where improvement can be made. For instance, in the screenshot below, I have highlighted some words where improvement can be made.

  1. ‘1,2,3,5’ – Literals in SSMS are Red
  2. ‘ER – 100% OF MEDICARE’ – OF is highlighted in Blue. It is contained in a literal and shouldn’t be highlighted
  3. ISNULL – Is a function and should be highlighted in Blue
---- - It looks like that the tagger is only looking for 2 – only. If there are more than 2 in sequence, it doesn’t identify it as a comment and should
Unplanned
Last Updated: 28 Jan 2020 12:27 by ADMIN
We could create intellisense similar to Visual Studio.
Unplanned
Last Updated: 22 Nov 2019 08:49 by ADMIN
Add support for using right-to-left characters. This includes.
    - typing from right to left
    - proper selection, navigation between RTL chars
    - proper insert, delete, cut, copy, paste operations (modifications) sign
Unplanned
Last Updated: 04 Nov 2019 10:32 by ADMIN
Created by: Mischa Müller
Comments: 1
Category: SyntaxEditor
Type: Feature Request
5
Python is one of the most important scripting languages. It would be nice if this language was supported by default.
Unplanned
Last Updated: 07 Oct 2019 11:37 by ADMIN
Created by: Olivier
Comments: 1
Category: SyntaxEditor
Type: Feature Request
6

Hello,

We would like to use SyntaxEditor by providing our own programming language definition. It would be great to have the ability to feed SyntaxEditor with a language definition file. This file could be use an EBNF-like format to provide syntax coloration.

Thanks & regards,

Unplanned
Last Updated: 24 Sep 2019 11:27 by ADMIN
Created by: Petar
Comments: 0
Category: SyntaxEditor
Type: Feature Request
9
Add API for inserting code snippets like in Visual Studio.