feat: add telescope.nvim integration for session selector - #7
Merged
Conversation
Add full telescope.nvim integration for session selection with: - Custom picker displaying session name, note count, date, and branch - Buffer previewer showing session details and note summaries - Support for theme and layout_config options from config - Graceful fallback when telescope.nvim is not available 🤖 Generated with [Claude Code](https://claude.com/claude-code)
Introduce selector factory module that selects the appropriate selector backend (native, telescope, or float) based on the ui.selector configuration option. This enables runtime switching between different session picker implementations without code changes. 🤖 Generated with [Claude Code](https://claude.com/claude-code)
…ctory Add 30 new tests covering: - Telescope selector: basic functionality, picker creation, entry display, callback handling, configuration, and previewer (22 tests) - Selector factory: selector selection based on config, fallback behavior, and runtime config changes (8 tests) 🤖 Generated with [Claude Code](https://claude.com/claude-code)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ui.selectorconfig optionChanges
New Features
Telescope Session Selector (
lua/tabi/ui/selector/telescope.lua)ui.telescope.themeandui.telescope.layout_configoptionsSelector Factory (
lua/tabi/ui/selector/init.lua)config.get().ui.selectorConfiguration
Test plan
:Tabi retracewithui.selector = "telescope"to verify telescope picker appears🤖 Generated with Claude Code