https://github.com/cakecatz/nuclide-quick-open
This is a read-only copy of the nuclide-quick-open package found in https://github.com/facebook/nuclide/tree/master/pkg/. Please file issues and pull requests against the original instead of this copy.
https://github.com/cakecatz/nuclide-quick-open
Last synced: about 2 months ago
JSON representation
This is a read-only copy of the nuclide-quick-open package found in https://github.com/facebook/nuclide/tree/master/pkg/. Please file issues and pull requests against the original instead of this copy.
- Host: GitHub
- URL: https://github.com/cakecatz/nuclide-quick-open
- Owner: cakecatz
- Created: 2015-07-08T15:05:25.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-06T20:02:39.000Z (almost 10 years ago)
- Last Synced: 2025-02-12T02:09:04.501Z (3 months ago)
- Language: JavaScript
- Homepage: http://nuclide.io
- Size: 391 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
**NOTE:** The official repository for this package is https://github.com/facebook/nuclide.
Please file all issues and pull requests there.# nuclide-quick-open
This package provides a modal UI to quickly find both local and remote files.
The package enables fuzzy filename search, as well as searching the names of open files.
In addition, custom search providers can be supplied, such as providers for language-specific
symbol search or other, arbitrary services depending on which directories are mounted.The primary quick-open UI is invoked via `cmd+t`, which shows a combined list of results from all
search providers, obtained asynchronously.# Example

# Usage
The following key bindings are supported:
* `cmd+t`: All Results
* `cmd+opt+t`: Fuzzy file name results
* `cmd+opt+o`: Fuzzy file name search across open filesNuclide also ships with these optional providers, where applicable:
* `cmd+opt+s`: Hack symbol search results### Note: Why nuclide-quick-open overrides `cmd+t`
Nuclide-quick-open overrides the idiomatic `cmd+t` keybinding shared with Atom's
Fuzzy Finder package.Fuzzy-finder functionality remains accessible via `cmd+p`, since the
`fuzzy-finder:toggle-file-finder` action has [two redundant keybindings](https://github.com/atom/fuzzy-finder/commit/4bc64b460299b0b6f7416d645fed79355f0b1665#diff-de068ccfe2bca7a3eaf241795d10f7bdR5).