# ╭─────────────╥────────────────────────╮ # │ Author: ║ File: │ # │ Andrey Orst ║ fzf-svn.kak │ # ╞═════════════╩════════════════════════╡ # │ Submodule for Hg support for fzf.kak │ # ╞══════════════════════════════════════╡ # │ GitHub.com/andreyorst/fzf.kak │ # ╰──────────────────────────────────────╯ declare-option -docstring "command to provide list of files in mercurial repository to fzf. Arguments are supported Supported tools: : : Mercurial SCM: ""hg"" Default arguments: ""hg locate -f -0 -I .hg locate -f -0 -I ."" " \ str fzf_hg_command "hg" try %{ declare-user-mode fzf-vcs } map global fzf-vcs -docstring "edit file from mercurial tree" 'h' ': fzf-hg' define-command -hidden fzf-hg %{ evaluate-commands %sh{ current_path=$(pwd) repo_root=$(hg root) case $kak_opt_fzf_hg_command in hg) cmd="hg locate -f -0 -I .hg locate -f -0 -I ." ;; hg*) cmd=$kak_opt_fzf_hg_command ;; esac [ ! -z "${kak_client_env_TMUX}" ] && additional_flags="--expect ctrl-v --expect ctrl-s" printf "%s\n" "fzf -kak-cmd %{cd $repo_root; edit -existing} -items-cmd %{$cmd} -fzf-args %{-m --expect ctrl-w $additional_flags} -post-action %{cd $current_path}" }}