diff --git a/rc/fzf.kak b/rc/fzf.kak index 4076143..27f1f8e 100644 --- a/rc/fzf.kak +++ b/rc/fzf.kak @@ -69,21 +69,21 @@ Best used with mapping like: " \ fzf-mode %{ try %{ evaluate-commands 'enter-user-mode fzf' } } -define-command -hidden -docstring "wrapper command to create new vertical split. Should work in both new and old Kakoune" \ +define-command -hidden -docstring "wrapper command to create new vertical split" \ fzf-vertical -params .. %{ try %{ tmux-terminal-vertical kak -c %val{session} -e "%arg{@}" } catch %{ tmux-new-vertical "%arg{@}" }} -define-command -hidden -docstring "wrapper command to create new horizontal split. Should work in both new and old Kakoune" \ +define-command -hidden -docstring "wrapper command to create new horizontal split" \ fzf-horizontal -params .. %{ try %{ tmux-terminal-horizontal kak -c %val{session} -e "%arg{@}" } catch %{ tmux-new-horizontal "%arg{@}" }} -define-command -hidden -docstring "wrapper command to create new window. Should work in both new and old Kakoune" \ +define-command -hidden -docstring "wrapper command to create new terminal" \ fzf-window -params .. %{ try %sh{ if [ -n "$kak_client_env_TMUX" ]; then printf "%s\n" 'tmux-terminal-window kak -c %val{session} -e "%arg{@}"' @@ -102,14 +102,14 @@ define-command -docstring \ "fzf : generic fzf command. This command can be used to create new fzf wrappers for various Kakoune or external features. Switches: - -kak-cmd : A Kakoune cmd that is applied to fzf resulting value. - -items-cmd : A command that is used as a pipe to provide list of values to fzf. - -fzf-impl : Owerride fzf implementation variable. - -fzf-args : Additional flags for fzf program. - -preview-cmd: A preview command. - -preview: Should fzf window include preview. - -filter : A pipe which will be applied to result provided by fzf. - -post-action : Extra commands that are preformed after `-kak-cmd' command." \ + -kak-cmd : A Kakoune cmd that is applied to fzf resulting value + -items-cmd : A command that is used as a pipe to provide list of values to fzf + -fzf-impl : Owerride fzf implementation variable + -fzf-args : Additional flags for fzf program + -preview-cmd: A preview command + -preview: Should fzf window include preview + -filter : A pipe which will be applied to result provided by fzf + -post-action : Extra commands that are preformed after `-kak-cmd' command" \ -shell-script-completion %{ printf "%s\n" "-kak-cmd -items-cmd diff --git a/rc/modules/fzf-ctags.kak b/rc/modules/fzf-ctags.kak index 40bc8cf..97a0782 100644 --- a/rc/modules/fzf-ctags.kak +++ b/rc/modules/fzf-ctags.kak @@ -814,7 +814,7 @@ define-command -hidden fzf-tag -params ..2 %{ evaluate-commands %sh{ message="Jump to a symbol''s definition : open tag in new buffer -: open tag in new window" +: open tag in new terminal" [ -n "${kak_client_env_TMUX}" ] && tmux_keybindings=" : open tag in horizontal split diff --git a/rc/modules/fzf-file.kak b/rc/modules/fzf-file.kak index 500b1d0..c744fa1 100644 --- a/rc/modules/fzf-file.kak +++ b/rc/modules/fzf-file.kak @@ -51,7 +51,7 @@ define-command -hidden fzf-file %{ evaluate-commands %sh{ message="Open single or multiple files. : open file in new buffer. -: open file in new window" +: open file in new terminal" [ ! -z "${kak_client_env_TMUX}" ] && tmux_keybindings=" : open file in horizontal split : open file in vertical split" diff --git a/rc/modules/fzf-vcs.kak b/rc/modules/fzf-vcs.kak index 1d70f49..4bd71d3 100644 --- a/rc/modules/fzf-vcs.kak +++ b/rc/modules/fzf-vcs.kak @@ -46,7 +46,7 @@ bzr status" : open file in vertical split" message="Open single or multiple files from git tree. : open file in new buffer. -: open file in new window $additional_keybindings" +: open file in new terminal $additional_keybindings" printf "%s\n" "info -title %{$title} %{$message}" printf "%s\n" "fzf-$vcs" exit diff --git a/rc/modules/sk-grep.kak b/rc/modules/sk-grep.kak index f1a146f..aa10027 100644 --- a/rc/modules/sk-grep.kak +++ b/rc/modules/sk-grep.kak @@ -31,7 +31,7 @@ define-command -hidden fzf-sk-grep %{ evaluate-commands %sh{ title="skim interactive grep" message="Interactively grep pattern from current directory : open search result in new buffer. -: open search result in new window" +: open search result in new terminal" [ ! -z "${kak_client_env_TMUX}" ] && tmux_keybindings=" : open search result in horizontal split : open search result in vertical split"