mirror of
https://github.com/Cian-H/dotfiles.git
synced 2026-01-25 11:42:30 +00:00
This change allows the dotfiles to work with chezmoi (e.g: on windows) and improves grepability with neovim/telescope
17 lines
434 B
Nu
17 lines
434 B
Nu
{
|
|
name: fuzzy_dir
|
|
modifier: control
|
|
keycode: char_s
|
|
mode: [emacs, vi_normal, vi_insert]
|
|
event: {
|
|
send: executehostcommand
|
|
cmd: "commandline edit --append (
|
|
ls **/*
|
|
| where type == dir
|
|
| get name
|
|
| input list --fuzzy
|
|
$'Please choose a (ansi magenta)directory(ansi reset) to (ansi cyan_underline)insert(ansi reset):'
|
|
)"
|
|
}
|
|
}
|