Heatseeker is a rewrite of Gary Bernhardt's selecta, a general-purpose fuzzy selector. It looks like this:
The purpose of the rewrite is to combine the simplicity and generality of Selecta with the speed and portability of native code.
Compiled binaries for the latest version can be downloaded from GitHub.
To install on Windows using Chocolatey, run:
posh
choco install heatseeker
To install on OS X using Homebrew, run:
zsh
brew tap rschmitt/heatseeker
brew install heatseeker
To install on Linux, run:
```zsh wget -q -O - https://github.com/rschmitt/heatseeker/releases/download/v1.7.0/heatseeker-v1.7.0-x86_64-unknown-linux-musl.tar.gz | tar -zxf -
sudo install hs /usr/local/bin/
install -D hs ~/bin/hs ```
Heatseeker supports basically the same keys as Selecta, along with a few others to support multi-select:
With PSReadLine, Heatseeker can be integrated directly into the Windows command line. Add this code to your $profile
. The file selector can be summoned with Ctrl-S.
```posh $ps = $null try { # On Windows 10, PSReadLine ships with PowerShell $ps = [Microsoft.PowerShell.PSConsoleReadline] } catch [Exception] { # Otherwise, it can be installed from the PowerShell Gallery: # https://github.com/lzybkr/PSReadLine#installation Import-Module PSReadLine $ps = [PSConsoleUtilities.PSConsoleReadLine] }
Set-PSReadlineKeyHandler
-Chord 'Ctrl+s'
-BriefDescription "InsertHeatseekerPathInCommandLine"
-LongDescription "Run Heatseeker in the PWD, appending any selected paths to the current command"
-ScriptBlock {
$choices = $(Get-ChildItem -Name -Attributes !D -Recurse | hs)
$ps::Insert($choices -join " ")
}
```
With a bit of Vimscript, you can use Heatseeker to open files in Vim, without any need for a special plugin.
The Vimscript samples from the Selecta README basically work, but it is preferable to modify them for use with Heatseeker in order to add support for Windows and multi-select.
```vim function! HeatseekerCommand(choicecommand, hsargs, firstcommand, restcommand) try let selections = system(a:choicecommand . " | hs " . a:hsargs) catch /Vim:Interrupt/ redraw! return endtry redraw! let first = 1 for selection in split(selections, "\n") if first exec a:firstcommand . " " . selection let first = 0 else exec a:restcommand . " " . selection endif endfor endfunction
if has('win32')
nnoremap
The same goes for buffer selection. This is a bit trickier on Windows, because the most straightforward way to send the list of buffers to Heatseeker is to write a temp file.
```posh function! HeatseekerBuffer() let bufnrs = filter(range(1, bufnr("$")), 'buflisted(v:val)') let buffers = map(bufnrs, 'bufname(v:val)') let namedbuffers = filter(buffers, '!empty(v:val)') if has('win32') let filename = tempname() call writefile(namedbuffers, filename) call HeatseekerCommand("type " . filename, "", ":b", ":b") silent let _ = system("del " . filename) else call HeatseekerCommand('echo "' . join(named_buffers, "\n") . '"', "", ":b", ":b") endif endfunction
" Fuzzy select a buffer. Open the selected buffer with :b.
nnoremap
Perform the build by invoking:
$ cargo build --release
The resulting binary will be located in the target/release
directory. (Note that omitting the --release
flag will cause compiler optimizations to be skipped; this speeds up compilation but results in a remarkably sluggish program.) The unit tests can be invoked by running:
$ cargo test