A fast and intuitive search extension for Visual Studio Code, inspired by vim telescope. Provides powerful text search and file search capabilities with a clean split-pane interface.
QuickFind creates dedicated webview panels that provide a more user-friendly and immersive search experience with better context visualization.
Maximizes the search panel to use the full screen space with the context panel positioned on the right for optimal code viewing.
Keeps the search panel contained within the current editor with the context panel positioned on top for a smaller footprint. Enable via VSCode settings.
Keybinding: Ctrl+K Ctrl+T
(Windows/Linux) / Cmd+K Cmd+T
(macOS)
Search within the currently active file with real-time regex matching and highlighting. Features toggle buttons for case-sensitive and whole-word search options.
Keybinding: Ctrl+K Ctrl+G
(Windows/Linux) / Cmd+K Cmd+G
(macOS)
Search across all files in your workspace with blazing-fast performance. Features toggle buttons for case-sensitive and whole-word search options.
Keybinding: Ctrl+K Ctrl+F
(Windows/Linux) / Cmd+K Cmd+F
(macOS)
Fuzzy search for files in your workspace. Find files by name with intelligent matching and see file metadata in the context panel.
Toggle buttons for advanced search options:
- Case-Sensitive (
Aa
button) and Whole-Word (W
button) matching - Persistent Settings: Preferences automatically saved and remembered across sessions
- Real-time Updates with visual feedback (muted/highlighted states)
Automatic search history with smart defaults:
- Auto-saved: Every search saved, most recent pre-filled on open
- Navigation:
Ctrl+Up/Down
(Windows/Linux) orCmd+Up/Down
(macOS) to browse history - Management: Clear via Command Palette → "QuickFind: Clear Search History"
- Storage: Limited to 50 entries, saved in
/tmp/vscode-quickfind-text-search-history.json
quickFind.contextSize
(default: 7): Lines of context around search results (0-20)quickFind.accentColor
(default: "#00ff88"): Hex color for search UI highlightsquickFind.maxFileSize
(default: "1MB"): Maximum file size for searches (supports KB, MB, GB)quickFind.maxResults
(default: 1000): Maximum number of results (1-10000)quickFind.maximizedLayout
(default: true): Auto-maximize search panel for full screen space and enable vertical split layout (context panel on right side instead of top)
- VSCode: Version 1.74.0 or higher
Customize via Keyboard Shortcuts (Ctrl+K Ctrl+S
/ Cmd+K Cmd+S
):
- Search in Current File:
Ctrl+K Ctrl+T
/Cmd+K Cmd+T
- Search in Workspace:
Ctrl+K Ctrl+G
/Cmd+K Cmd+G
- Search Files:
Ctrl+K Ctrl+F
/Cmd+K Cmd+F
- History Navigation:
Ctrl+Up/Down
/Cmd+Up/Down
- Clear History: Available in Command Palette
For installation instructions, changelog, detailed usage, development setup, releases, and contribution guidelines, see README_DEVELOPERS.md.