use <a-v> instead of V to keep with kakoune stylefor nonsmart keys
This commit is contained in:
parent
ce91198a89
commit
f329806d00
2 changed files with 9 additions and 9 deletions
|
@ -43,7 +43,7 @@ Available mappings:
|
||||||
- <kbd>c</kbd> - Switch servers working directory
|
- <kbd>c</kbd> - Switch servers working directory
|
||||||
- <kbd>f</kbd> - Search for file and open it
|
- <kbd>f</kbd> - Search for file and open it
|
||||||
- <kbd>v</kbd> - Edit file in version control system tree
|
- <kbd>v</kbd> - Edit file in version control system tree
|
||||||
- <kbd>V</kbd> - Explicitly select which vcs command to run
|
- <kbd><a-v></kbd> - Explicitly select which vcs command to run
|
||||||
- <kbd>s</kbd> - Search over buffer contents and jump to result line
|
- <kbd>s</kbd> - Search over buffer contents and jump to result line
|
||||||
- <kbd>t</kbd> - Browse ctags tags
|
- <kbd>t</kbd> - Browse ctags tags
|
||||||
fzf.kak supports filtering tags on per language basis. For each filetype
|
fzf.kak supports filtering tags on per language basis. For each filetype
|
||||||
|
|
|
@ -11,22 +11,22 @@
|
||||||
|
|
||||||
try %{ declare-user-mode fzf-vcs } catch %{echo -markup "{Error}Can't declare mode 'fzf-vcs' - already exists"}
|
try %{ declare-user-mode fzf-vcs } catch %{echo -markup "{Error}Can't declare mode 'fzf-vcs' - already exists"}
|
||||||
|
|
||||||
map global fzf -docstring "edit file from vcs repo" 'v' '<esc>: fzf-vcs<ret>'
|
map global fzf -docstring "edit file from vcs repo" 'v' '<esc>: fzf-vcs<ret>'
|
||||||
map global fzf -docstring "svitch to vcs selection mode" 'V' '<esc>: fzf-vcs-mode<ret>'
|
map global fzf -docstring "svitch to vcs selection mode" '<a-v>' '<esc>: fzf-vcs-mode<ret>'
|
||||||
|
|
||||||
define-command -docstring "Enter fzf-vcs-mode.
|
define-command -docstring "Enter fzf-vcs-mode.
|
||||||
This mode allows selecting specific vcs command." \
|
This mode allows selecting specific vcs command." \
|
||||||
fzf-vcs-mode %{ try %{ evaluate-commands 'enter-user-mode fzf-vcs' } }
|
fzf-vcs-mode %{ try %{ evaluate-commands 'enter-user-mode fzf-vcs' } }
|
||||||
|
|
||||||
define-command -hidden -docstring "Wrapper command for fzf vcs to automatically decect
|
define-command -hidden -docstring 'Wrapper command for fzf vcs to automatically decect
|
||||||
used version control system.
|
used version control system.
|
||||||
|
|
||||||
Supported vcs:
|
Supported vcs:
|
||||||
Git: ""git""
|
Git: "git"
|
||||||
Subversion: ""svn""
|
Subversion: "svn"
|
||||||
Mercurial SCM: ""hg""
|
Mercurial SCM: "hg"
|
||||||
GNU Bazaar: ""bzr""
|
GNU Bazaar: "bzr"
|
||||||
" \
|
' \
|
||||||
fzf-vcs %{ evaluate-commands %sh{
|
fzf-vcs %{ evaluate-commands %sh{
|
||||||
commands="git rev-parse --is-inside-work-tree
|
commands="git rev-parse --is-inside-work-tree
|
||||||
svn info
|
svn info
|
||||||
|
|
Loading…
Reference in a new issue