2 Repos
Mappings that associate syntax nodes with selectable text ranges for code manipulation.
Distinguishing note: Focuses on the mapping of syntax nodes to editor-selectable objects, distinct from general AST navigation.
Explore 2 awesome GitHub repositories matching software engineering & architecture · Structural Text Objects. 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 maps syntax nodes to selectable text objects like functions or classes by creating query files that enable precise code manipulation.
This project is a Vim keybinding emulation for Visual Studio Code. It implements modal text editing to separate navigation and content creation through specialized modes, reducing reliance on the mouse. The emulator supports custom IDE workflows by importing standard configuration files and remapping keyboard shortcuts. It integrates with external processes to handle complex commands and reproduces logic from common plugins for surrounding characters, commenting, and rapid motion. The capability surface includes keyboard-driven navigation using text objects, markers, and character sequences.
Identifies structural code blocks like brackets and indentation levels to treat them as selectable text objects.