Skip to content

Commit 44ef2a7

Browse files
committed
Adding a link to TM4E for syntax highlighting and code actions
1 parent f8260c1 commit 44ef2a7

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

docs/FAQ/FAQ_How_do_I_get_started_with_creating_a_custom_text_editor.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ FAQ How do I get started with creating a custom text editor?
44
Contributing to Generic and Extensible editor
55
---------------------------------------------
66

7-
Since Eclipse 4.7.M3, you can consider simply adding extensions to the [Generic Editor](https://www.eclipse.org/eclipse/news/4.7/M3/#generic-editor) . This will allow you to write support for textual edition of a language with less boiler plate.
7+
Define an extension for the [Generic Editor](https://www.eclipse.org/eclipse/news/4.7/M3/#generic-editor).
8+
This allows you to write support for textual edition of a language with less boiler plate.
89

910
Create a custom text editor
1011
---------------------------

docs/FAQ/FAQ_How_do_I_write_an_editor_for_my_own_language.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ FAQ How do I write an editor for my own language?
44
Contributing to Generic and Extensible editor
55
---------------------------------------------
66

7-
Since Eclipse 4.7.M3, you can consider simply adding extensions to the [Generic Editor](https://www.eclipse.org/eclipse/news/4.7/M3/#generic-editor) . This will allow you to write support for textual edition of a language with less boiler plate.
7+
Define an extension for the [Generic Editor](https://www.eclipse.org/eclipse/news/4.7/M3/#generic-editor).
8+
This allows you to write support for textual edition of a language with less boiler plate.
89

910
Implementing your own editor
1011
----------------------------
@@ -94,10 +95,14 @@ For scanning the underlying document to draw it using different colors and fonts
9495

9596
For each of the keywords in our little language, we define a word entry in our WordRule. We pass our keyword detector, together with rules for recognizing comments, strings, and white spaces to the scanner. With this simple set of rules, the scanner can segment a stream of bytes into sections and then use the underlying rules to color the sections.
9697

98+
[Eclipse TM4E - TextMate and language-configuration support](https://github.com/eclipse-tm4e/tm4e) allows to configure syntax highlighting and certain editor actions based on configuration files.
99+
97100
See Also:
98101
---------
99102

100103
* [FAQ How do I create my own editor?](./FAQ_How_do_I_create_my_own_editor.md "FAQ How do I create my own editor?")
101104
* [FAQ How do I get started with creating a custom text editor?](./FAQ_How_do_I_get_started_with_creating_a_custom_text_editor.md "FAQ How do I get started with creating a custom text editor?")
102105
* [FAQ How do I add Content Assist to my language editor?](./FAQ_How_do_I_add_Content_Assist_to_my_language_editor.md "FAQ How do I add Content Assist to my language editor?")
106+
* [Eclipse TM4E - TextMate and language-configuration support](https://github.com/eclipse-tm4e/tm4e)
107+
103108

0 commit comments

Comments
 (0)