This package provides:
This package consumes:
Made for Pulsar!
This package was written specifically for Pulsar and did not exist in the Atom package repository.
Quickly find and take an action over project files.

Fork of fuzzy-finder.
: syntax (e.g., file.js:42).To install fuzzy-files search for fuzzy-files in the Install pane of the Pulsar settings or run ppm install fuzzy-files. Alternatively, you can run ppm install asiloisad/pulsar-fuzzy-files to install a package directly from the GitHub repository.
Note: This package automatically disables the built-in fuzzy-finder package to avoid conflicts.
Commands available in atom-workspace:
fuzzy-files:toggle: toggle fuzzy files panel,fuzzy-files:update: refresh file cache.Commands available in .fuzzy-files:
select-list:open: open file,select-list:open-external: open file externally,select-list:show-in-folder: show in folder,select-list:trash: move file to trash,select-list:split-left/right/up/down: open in split pane,select-list:update: refresh file index,select-list:copy-r: copy relative path,select-list:copy-p: copy project path,select-list:copy-a: copy absolute path,select-list:copy-n: copy file name,select-list:insert-r: insert relative path,select-list:insert-p: insert project path,select-list:insert-a: insert absolute path,select-list:insert-n: insert file name,select-list:default-slash: use default separator,select-list:forward-slash: use forward slash,select-list:backslash: use backslash,select-list:query-item: set query from selected item path,select-list:query-selection: set query from editor selection,select-list:reveal-in-tree-view: reveal selected file in tree view (requires tree-view-plus),select-list:cut-file: cut selected file,select-list:copy-file: copy selected file.fuzzy-files.score-modifierAllows other packages to register functions that modify the score of search results. Consumer packages can use this to boost or penalize specific files in the ranking.
In your package.json:
{
"consumedServices": {
"fuzzy-files.score-modifier": {
"versions": { "^1.0.0": "consumeScoreModifier" }
}
}
}
In your main module:
consumeScoreModifier(service) {
return service.add((score, item) => {
// item: { fPath, aPath, pPath, nPath, rPath, distance }
return score * multiplier;
});
}
atom.file-iconsDisplays file type icons next to entries in the file list. Provided by file-icons.
open-externalOpens files with external applications. Provided by open-external.
claude-chatAttaches selected files to the Claude chat context. Provided by claude-chat.
windows-clipCopy and cut files to the Windows clipboard. Provided by windows-clip.
tree-view-plusReveals the selected file in the tree view. Provided by tree-view-plus.
Got ideas to make this package better, found a bug, or want to help add new features? Just drop your thoughts on GitHub. Any feedback is welcome!