3 个仓库
Places virtual text and floating window annotations using Neovim's extmark API for blame and hunk preview display.
Distinct from Inline Annotations: Distinct from Inline Annotations: focuses on Neovim's extmark API for virtual text and floating window annotations, not general editor virtual text overlays.
Explore 3 awesome GitHub repositories matching user interface & experience · Extmark-Based. Refine with filters or upvote what's useful.
Gitsigns.nvim is a Neovim plugin that integrates Git diff visualization, blame annotations, and hunk-based staging directly into the editor buffer. It renders add, modify, and delete indicators in the sign column for tracked files, and provides inline or popup blame annotations showing commit authorship and date for each line. The plugin operates on individual diff hunks as atomic units for staging, reverting, and navigation, all executed asynchronously via Neovim's job control API to avoid blocking the UI. The plugin distinguishes itself by enabling hunk-level staging and resetting directly
Uses Neovim's extmark API to render virtual text and floating window annotations for blame and hunk previews.
bufferline.nvim is a buffer line plugin for Neovim that provides a visual tab bar at the top of the editor to display open buffers. It functions as a workspace organizer and tabpage management interface, allowing users to switch the display mode between individual open buffers and global tabpages. The project features an LSP diagnostic visualizer that maps language server errors and warnings directly onto the buffer tabs. It enables UI customization through adjustable tab shapes and underline indicators to emulate the appearance of graphical text editors. The plugin includes capabilities for
Renders buffer tabs as virtual text using Neovim's extmark API for efficient inline display.
Nvim-colorizer.lua 是一个 Neovim 插件,提供直接在文本编辑器内对颜色定义的实时语法高亮显示。它将颜色代码(如十六进制和 RGB 值)渲染为视觉背景或文本颜色,允许开发者在不离开源文件的情况下预览设计令牌和样式定义。 该插件的特色在于面向性能的架构,将文本扫描卸载到后台进程,确保编辑器界面保持响应。它利用编辑器内部的装饰系统来覆盖高亮显示,而不修改底层源代码,并维护一个状态注册表以管理不同缓冲区中的活动高亮。 用户可以配置插件以针对特定的文件类型和颜色模式,从而控制哪些文档接收视觉样式。该工具包括为单个文件切换高亮显示的功能,并支持在不需要自动检测的情况下进行手动附加。 该项目使用 Lua 编写,并与编辑器的生命周期事件集成,以便在打开或修改文件时自动触发扫描。
Uses the editor's internal decoration system to overlay color highlights without modifying the underlying source code.