2018-11-11 10:41:15 +00:00
|
|
|
# ╭─────────────╥─────────────────────────╮
|
|
|
|
# │ Author: ║ File: │
|
|
|
|
# │ Andrey Orst ║ fzf-svn.kak │
|
|
|
|
# ╞═════════════╩═════════════════════════╡
|
|
|
|
# │ Submodule for Git support for fzf.kak │
|
|
|
|
# ╞═══════════════════════════════════════╡
|
|
|
|
# │ GitHub.com/andreyorst/fzf.kak │
|
|
|
|
# ╰───────────────────────────────────────╯
|
|
|
|
|
2019-06-30 09:45:39 +00:00
|
|
|
hook global ModuleLoaded fzf_vcs %§
|
2019-05-20 10:35:10 +00:00
|
|
|
|
2018-11-11 10:41:15 +00:00
|
|
|
declare-option -docstring "command to provide list of files in git tree to fzf. Arguments are supported
|
|
|
|
Supported tools:
|
|
|
|
<package>: <value>:
|
|
|
|
Git : ""git""
|
|
|
|
|
|
|
|
Default arguments:
|
2018-11-24 18:58:23 +00:00
|
|
|
""git ls-tree --full-tree --name-only -r HEAD""
|
2018-11-11 10:41:15 +00:00
|
|
|
" \
|
|
|
|
str fzf_git_command "git"
|
|
|
|
|
|
|
|
map global fzf-vcs -docstring "edit file from Git tree" 'g' '<esc>: fzf-git<ret>'
|
|
|
|
|
2019-03-17 05:09:34 +00:00
|
|
|
define-command -override -hidden fzf-git %{ evaluate-commands %sh{
|
|
|
|
current_path=$(pwd)
|
|
|
|
repo_root=$(git rev-parse --show-toplevel)
|
2018-11-11 10:41:15 +00:00
|
|
|
case $kak_opt_fzf_git_command in
|
2019-07-07 08:27:37 +00:00
|
|
|
(git) cmd="git ls-tree --full-tree --name-only -r HEAD" ;;
|
|
|
|
(git*) cmd=$kak_opt_fzf_git_command ;;
|
2018-11-11 10:41:15 +00:00
|
|
|
esac
|
2019-05-13 18:34:46 +00:00
|
|
|
[ ! -z "${kak_client_env_TMUX}" ] && additional_flags="--expect $kak_opt_fzf_vertical_map --expect $kak_opt_fzf_horizontal_map"
|
|
|
|
printf "%s\n" "fzf -kak-cmd %{cd $repo_root; edit -existing} -items-cmd %{$cmd} -fzf-args %{-m --expect $kak_opt_fzf_window_map $additional_flags} -post-action %{cd $current_path}"
|
2018-11-11 10:41:15 +00:00
|
|
|
}}
|
|
|
|
|
2019-05-09 15:12:06 +00:00
|
|
|
§
|