# Author: Andrey Listopadov # Module that declares VCS submodule for various version control systems to open files with fzf # https://github.com/andreyorst/fzf.kak hook global ModuleLoaded fzf %§ map global fzf -docstring "edit file from vcs repo" 'v' ': require-module fzf-vcs; fzf-vcs' map global fzf -docstring "switch to vcs selection mode" '' ': require-module fzf-vcs; enter-user-mode fzf-vcs' § provide-module fzf-vcs %§ require-module fzf-git require-module fzf-svn require-module fzf-hg require-module fzf-bzr declare-user-mode fzf-vcs define-command -hidden -docstring 'Wrapper command for fzf vcs to automatically decect used version control system. Supported vcs: Git: "git" Subversion: "svn" Mercurial SCM: "hg" GNU Bazaar: "bzr" ' \ fzf-vcs %{ evaluate-commands %sh{ commands="git rev-parse --is-inside-work-tree svn info hg --cwd . root bzr status" IFS=' ' for cmd in $commands; do eval "$cmd" >/dev/null 2>&1 res=$? if [ "$res" = "0" ]; then vcs=$(printf "%s\n" "$cmd" | awk '{print $1}') title="fzf $vcs" [ -n "${kak_client_env_TMUX:-}" ] && additional_keybindings=" ${kak_opt_fzf_horizontal_map:-ctrl-s}: open file in horizontal split ${kak_opt_fzf_vertical_map:-ctrl-v}: open file in vertical split" message="Open single or multiple files from git tree. : open file in new buffer. ${kak_opt_fzf_window_map:-ctrl-w}: open file in new terminal $additional_keybindings" printf "%s\n" "info -title %{$title} %{$message}" printf "%s\n" "fzf-$vcs" exit fi done printf "%s\n" "echo -markup '{Information}No VCS found in current folder'" }} §