annotate dot_config/private_fish/functions/fzf_hg_status_files.fish @ 1052:33ed4d4bba1d
feat: add to-fish for bookmarking directories
author |
Zeger Van de Vannet <zeger.van_de_vannet@nokia.com> |
date |
Tue, 23 Jul 2024 16:46:22 +0200 |
parents |
6ab26ddbf78d |
children |
|
rev |
line source |
1038
|
1 function fzf_hg_status_files
|
|
2 set result (HGRCPATH= rhg status -n --color=always --config commands.status.relative=yes| fzf --ansi -m --header "Select the file(s) to insert in the command line")
|
|
3 if test -n "$result"
|
|
4 commandline -i (string join " " -- $result "") # adds a space after the inserted line output
|
|
5 end
|
|
6 commandline -f repaint
|
|
7 end
|