Dominik Schachten 59bdc8d354 Fix fs.lstatSync throws Exception if no file or dir 7 months ago
..
docs 90566ed772 Added fuzzy-finder without some experimental stuff 1 year ago
keymaps 90566ed772 Added fuzzy-finder without some experimental stuff 1 year ago
lib 59bdc8d354 Fix fs.lstatSync throws Exception if no file or dir 7 months ago
menus 90566ed772 Added fuzzy-finder without some experimental stuff 1 year ago
spec 0f23c2e6a6 Less whitespace, please 1 year ago
styles ae22f32ea3 Very thorough wrapping of math in `()` 1 year ago
.gitignore 90566ed772 Added fuzzy-finder without some experimental stuff 1 year ago
CONTRIBUTING.md 90566ed772 Added fuzzy-finder without some experimental stuff 1 year ago
LICENSE.md 90566ed772 Added fuzzy-finder without some experimental stuff 1 year ago
README.md 8058821dfd revert changes to description 11 months ago
package-lock.json 90e792ad01 Using pulsar's fuzzyMatcher API in fuzzy-finder 1 year ago
package.json 90e792ad01 Using pulsar's fuzzyMatcher API in fuzzy-finder 1 year ago

README.md

Fuzzy Finder package

Quickly find and open files using cmd/ctrl-t.

  • cmd-t/cmd-p (macOS) or ctrl-t/ctrl-p (Linux/Windows) to open the file finder
  • cmd-b (macOS) or ctrl-b (Linux/Windows) to open the list of open buffers
  • cmd-shift-b (macOS) or ctrl-shift-b (Linux/Windows) to open the list of Git modified and untracked files

When opening a file, you can control the behavior.

  • enter defaults to opening the selected file without leaving the current pane
  • shift-enter defaults to switching to another pane if the file is already open there
  • cmd-k right (macOS) or ctrl-k right (Linux/Windows) (or any other directional arrow) will open the highlighted file in a new pane on the side indicated by the arrow
  • Adding :<line number> to the end of your search will go directly to the line number you specify, or the last line if the number is larger

Turning on the "Search All Panes" setting reverses the behavior of enter and shift-enter so enter opens the file in any pane and shift-enter creates a new tab in the current pane.

This package uses both the core.ignoredNames and fuzzy-finder.ignoredNames config settings to filter out files and folders that will not be shown. Both of those config settings are interpreted as arrays of minimatch glob patterns.

This package also will also not show Git ignored files when the core.excludeVcsIgnoredPaths is enabled.