2 repos
Systems that map code syntax tree nodes to visual themes and formatting rules.
Distinguishing note: Focuses on declarative pattern-matching for document styling and formatting.
Explore 2 awesome GitHub repositories matching user interface & experience · Syntax Highlighting Engines. Refine with filters or upvote what's useful.
Helix is a terminal-based modal text editor designed for efficient code manipulation and navigation. It centers on a selection-first editing model, where operations are performed on active ranges rather than individual cursor positions, allowing for precise control over text and code structures. The editor distinguishes itself through deep integration with structural parsing and language intelligence. By utilizing an incremental parsing library, it builds concrete syntax trees that enable advanced features like structural code navigation, intelligent indentation, and syntax-aware text object
Helix applies specific colors and styles to syntax scopes or interface elements by matching them against tree-sitter patterns or predefined UI keys.
Vim is a keyboard-driven text editor designed for the high-speed manipulation of source code and plain text files. It utilizes a modal interface that interprets keystrokes as either text insertion or complex navigation and editing commands. Built on a portable C core, the software maintains a consistent experience across diverse operating systems and terminal emulators through an abstraction layer that manages text in memory-mapped buffers. The editor functions as a highly modular platform that supports extensive customization through a built-in scripting engine and a plugin-based architectur
The editor applies visual styling to text by matching patterns against defined language rules using a high-performance internal regular expression engine.