From b20c3164217317b1a1b1887cc32c0e1504d982e2 Mon Sep 17 00:00:00 2001 From: Andrey Orst Date: Sun, 14 Oct 2018 21:57:44 +0300 Subject: [PATCH] make all mappings use ctrl instead of uppercase letter because of https://github.com/junegunn/fzf/issues/1404 --- rc/fzf.kak | 888 +++++++++++++++++++++++++++-------------------------- 1 file changed, 449 insertions(+), 439 deletions(-) diff --git a/rc/fzf.kak b/rc/fzf.kak index 9abb48a..813c2c2 100644 --- a/rc/fzf.kak +++ b/rc/fzf.kak @@ -97,7 +97,7 @@ Supported tools: Default arguments: coderay: ""coderay {}"" - highlight: ""highlight --failsafe -O ansi -l {}"" + highlight: ""highlight --failsafe -O ansi {}"" rouge: ""rougify {}"" " \ str fzf_highlighter "highlight" @@ -108,9 +108,10 @@ str fzf_tmux_height '25%' declare-option -docstring "command to provide list of directories to fzf. Default value: -(echo .. && find \( -path '*/.svn*' -o -path '*/.git*' \) -prune -o -type d -print) + find: (echo .. && find \( -path '*/.svn*' -o -path '*/.git*' \) -prune -o -type d -print) " \ str fzf_cd_command "find" + # default mappings map global fzf -docstring "open buffer" 'b' ': fzf-buffer' map global fzf -docstring "change directory" 'c' ': fzf-cd' @@ -416,47 +417,47 @@ define-command -hidden fzf-buffer %{ evaluate-commands %sh{ ) > /dev/null 2>&1 < /dev/null & }} -declare-option -hidden -docstring "Set of mappings for Ada filetype" \ +declare-option -hidden -docstring "A set of mappings for Ada filetype" \ str fzf_tag_ada " -: package specifications -: packages -: types -: subtypes -: record type components -: enum type literals -: variables -: generic formal parameters -: constants -: user defined exceptions -: subprogram specifications -: subprograms -: task specifications -: tasks -: protected data specifications -: protected data -: task/protected data entries -: labels -: loop/declare identifiers -: (ctags internal use)" +: package specifications +: packages +: types +: subtypes +: record type components +: enum type literals +: variables +: generic formal parameters +: constants +: user defined exceptions +: subprogram specifications +: subprograms +: task specifications +: tasks +: protected data specifications +: protected data +: task/protected data entries +: labels +: loop/declare identifiers +: (ctags internal use)" -declare-option -hidden -docstring "Set of mappings for Ant filetype" \ +declare-option -hidden -docstring "A set of mappings for Ant filetype" \ str fzf_tag_ant " -: projects -: targets -: properties(global) -: antfiles" +: projects +: targets +: properties(global) +: antfiles" -declare-option -hidden -docstring "Set of mappings for Asciidoc filetype" \ +declare-option -hidden -docstring "A set of mappings for Asciidoc filetype" \ str fzf_tag_asciidoc " -: chapters -: sections -: level : sections -: level : sections -: level : sections -: level : sections -: anchors" +: chapters +: sections +: level 2 sections +: level 3 sections +: level 4 sections +: level 5 sections +: anchors" -declare-option -hidden -docstring "Set of mappings for Asm filetype" \ +declare-option -hidden -docstring "A set of mappings for Asm filetype" \ str fzf_tag_asm " : defines : labels @@ -464,7 +465,7 @@ str fzf_tag_asm " : types (structs and records) : sections" -declare-option -hidden -docstring "Set of mappings for Asp filetype" \ +declare-option -hidden -docstring "A set of mappings for Asp filetype" \ str fzf_tag_asp " : constants : classes @@ -472,7 +473,7 @@ str fzf_tag_asp " : subroutines : variables" -declare-option -hidden -docstring "Set of mappings for Autoconf filetype" \ +declare-option -hidden -docstring "A set of mappings for Autoconf filetype" \ str fzf_tag_autoconf " : packages : templates @@ -483,30 +484,30 @@ str fzf_tag_autoconf " : automake conditions : definitions" -declare-option -hidden -docstring "Set of mappings for AutoIt filetype" \ +declare-option -hidden -docstring "A set of mappings for AutoIt filetype" \ str fzf_tag_autoit " -: functions -: regions -: global variables -: local variables -: included scripts" +: functions +: regions +: global variables +: local variables +: included scripts" -declare-option -hidden -docstring "Set of mappings for Automake filetype" \ +declare-option -hidden -docstring "A set of mappings for Automake filetype" \ str fzf_tag_automake " -: directories -: programs -: manuals -: ltlibraries -: libraries -: scripts -: datum -: conditions" +: directories +: programs +: manuals +: ltlibraries +: libraries +: scripts +: datum +: conditions" -declare-option -hidden -docstring "Set of mappings for Awk filetype" \ +declare-option -hidden -docstring "A set of mappings for Awk filetype" \ str fzf_tag_awk " : functions" -declare-option -hidden -docstring "Set of mappings for Basic filetype" \ +declare-option -hidden -docstring "A set of mappings for Basic filetype" \ str fzf_tag_basic " : constants : functions @@ -515,28 +516,28 @@ str fzf_tag_basic " : variables : enumerations" -declare-option -hidden -docstring "Set of mappings for BETA filetype" \ +declare-option -hidden -docstring "A set of mappings for BETA filetype" \ str fzf_tag_beta " : fragment definitions : slots (fragment uses) : patterns (virtual or rebound)" -declare-option -hidden -docstring "Set of mappings for Clojure filetype" \ +declare-option -hidden -docstring "A set of mappings for Clojure filetype" \ str fzf_tag_clojure " : functions : namespaces" -declare-option -hidden -docstring "Set of mappings for CMake filetype" \ +declare-option -hidden -docstring "A set of mappings for CMake filetype" \ str fzf_tag_cmake " -: functions -: macros -: targets -: variable definitions -: options specified with -D -: projects -: regex" +: functions +: macros +: targets +: variable definitions +: options specified with -D +: projects +: regex" -declare-option -hidden -docstring "Set of mappings for C filetype" \ +declare-option -hidden -docstring "A set of mappings for C filetype" \ str fzf_tag_c " : macro definitions : enumerators (values inside an enumeration) @@ -549,7 +550,7 @@ str fzf_tag_c " : union names : variable definitions" -declare-option -hidden -docstring "Set of mappings for C++ filetype" \ +declare-option -hidden -docstring "A set of mappings for C++ filetype" \ str fzf_tag_cpp " : macro definitions : enumerators (values inside an enumeration) @@ -564,49 +565,49 @@ str fzf_tag_cpp " : classes : namespaces" -declare-option -hidden -docstring "Set of mappings for CPreProcessor filetype" \ +declare-option -hidden -docstring "A set of mappings for CPreProcessor filetype" \ str fzf_tag_cpreprocessor " : macro definitions : included header files" -declare-option -hidden -docstring "Set of mappings for CSS filetype" \ +declare-option -hidden -docstring "A set of mappings for CSS filetype" \ str fzf_tag_css " : classes : selectors : identities" -declare-option -hidden -docstring "Set of mappings for C# filetype" \ +declare-option -hidden -docstring "A set of mappings for C# filetype" \ str fzf_tag_csharp " -: classes -: macro definitions -: enumerators (values inside an enumeration) -: events -: fields -: enumeration names -: interfaces -: methods -: namespaces -: properties -: structure names -: typedefs" +: classes +: macro definitions +: enumerators (values inside an enumeration) +: events +: fields +: enumeration names +: interfaces +: methods +: namespaces +: properties +: structure names +: typedefs" -declare-option -hidden -docstring "Set of mappings for Ctags filetype" \ +declare-option -hidden -docstring "A set of mappings for Ctags filetype" \ str fzf_tag_ctags " : language definitions : kind definitions" -declare-option -hidden -docstring "Set of mappings for Cobol filetype" \ +declare-option -hidden -docstring "A set of mappings for Cobol filetype" \ str fzf_tag_cobol " -: paragraphs -: data items -: source code file -: file descriptions (FD, SD, RD) -: group items -: program ids -: sections -: divisions" +: paragraphs +: data items +: source code file +: file descriptions (FD, SD, RD) +: group items +: program ids +: sections +: divisions" -declare-option -hidden -docstring "Set of mappings for CUDA filetype" \ +declare-option -hidden -docstring "A set of mappings for CUDA filetype" \ str fzf_tag_cuda " : macro definitions : enumerators (values inside an enumeration) @@ -619,56 +620,56 @@ str fzf_tag_cuda " : union names : variable definitions" -declare-option -hidden -docstring "Set of mappings for D filetype" \ +declare-option -hidden -docstring "A set of mappings for D filetype" \ str fzf_tag_d " -: aliases -: classes -: enumeration names -: enumerators (values inside an enumeration) -: function definitions -: interfaces -: class, struct, and union members -: mixins -: modules -: namespaces -: structure names -: templates -: union names -: variable definitions -: version statements" +: aliases +: classes +: enumeration names +: enumerators (values inside an enumeration) +: function definitions +: interfaces +: class, struct, and union members +: mixins +: modules +: namespaces +: structure names +: templates +: union names +: variable definitions +: version statements" -declare-option -hidden -docstring "Set of mappings for Diff filetype" \ +declare-option -hidden -docstring "A set of mappings for Diff filetype" \ str fzf_tag_diff " : modified files : newly created files : deleted files : hunks" -declare-option -hidden -docstring "Set of mappings for DTD filetype" \ +declare-option -hidden -docstring "A set of mappings for DTD filetype" \ str fzf_tag_dtd " -: entities -: parameter entities -: elements -: attributes -: notations" +: entities +: parameter entities +: elements +: attributes +: notations" -declare-option -hidden -docstring "Set of mappings for DTS filetype" \ +declare-option -hidden -docstring "A set of mappings for DTS filetype" \ str fzf_tag_dts " : phandlers : labels : regex" -declare-option -hidden -docstring "Set of mappings for DosBatch filetype" \ +declare-option -hidden -docstring "A set of mappings for DosBatch filetype" \ str fzf_tag_dosbatch " : labels : variables" -declare-option -hidden -docstring "Set of mappings for Eiffel filetype" \ +declare-option -hidden -docstring "A set of mappings for Eiffel filetype" \ str fzf_tag_eiffel " : classes : features" -declare-option -hidden -docstring "Set of mappings for Elm filetype" \ +declare-option -hidden -docstring "A set of mappings for Elm filetype" \ str fzf_tag_elm " : Module : Renamed Imported Module @@ -678,7 +679,7 @@ str fzf_tag_elm " : Type Alias : Functions" -declare-option -hidden -docstring "Set of mappings for Erlang filetype" \ +declare-option -hidden -docstring "A set of mappings for Erlang filetype" \ str fzf_tag_erlang " : macro definitions : functions @@ -686,7 +687,7 @@ str fzf_tag_erlang " : record definitions : type definitions" -declare-option -hidden -docstring "Set of mappings for Falcon filetype" \ +declare-option -hidden -docstring "A set of mappings for Falcon filetype" \ str fzf_tag_falcon " : classes : functions @@ -694,7 +695,7 @@ str fzf_tag_falcon " : variables : imports" -declare-option -hidden -docstring "Set of mappings for Flex filetype" \ +declare-option -hidden -docstring "A set of mappings for Flex filetype" \ str fzf_tag_flex " : functions : classes @@ -703,70 +704,70 @@ str fzf_tag_flex " : global variables : mxtags" -declare-option -hidden -docstring "Set of mappings for Fortran filetype" \ +declare-option -hidden -docstring "A set of mappings for Fortran filetype" \ str fzf_tag_fortran " -: block data -: common blocks -: entry points -: enumerations -: functions -: interface contents, generic names, and operators -: type and structure components -: labels -: modules -: type bound procedures -: namelists -: enumeration values -: programs -: subroutines -: derived types and structures -: program (global) and module variables -: submodules" +: block data +: common blocks +: entry points +: enumerations +: functions +: interface contents, generic names, and operators +: type and structure components +: labels +: modules +: type bound procedures +: namelists +: enumeration values +: programs +: subroutines +: derived types and structures +: program (global) and module variables +: submodules" -declare-option -hidden -docstring "Set of mappings for Fypp filetype" \ +declare-option -hidden -docstring "A set of mappings for Fypp filetype" \ str fzf_tag_fypp " : macros" -declare-option -hidden -docstring "Set of mappings for Gdbinit filetype" \ +declare-option -hidden -docstring "A set of mappings for Gdbinit filetype" \ str fzf_tag_gdbinit " : definitions : toplevel variables" -declare-option -hidden -docstring "Set of mappings for Go filetype" \ +declare-option -hidden -docstring "A set of mappings for Go filetype" \ str fzf_tag_go " -: packages -: functions -: constants -: types -: variables -: structs -: interfaces -: struct members -: struct anonymous members -: unknown -: name for specifying imported package" +: packages +: functions +: constants +: types +: variables +: structs +: interfaces +: struct members +: struct anonymous members +: unknown +: name for specifying imported package" -declare-option -hidden -docstring "Set of mappings for HTML filetype" \ +declare-option -hidden -docstring "A set of mappings for HTML filetype" \ str fzf_tag_html " : named anchors : H1 headings : H2 headings : H3 headings" -declare-option -hidden -docstring "Set of mappings for Iniconf filetype" \ +declare-option -hidden -docstring "A set of mappings for Iniconf filetype" \ str fzf_tag_iniconf " : sections : keys" -declare-option -hidden -docstring "Set of mappings for ITcl filetype" \ +declare-option -hidden -docstring "A set of mappings for ITcl filetype" \ str fzf_tag_itcl " -: classes -: methods -: object-specific variables -: common variables -: procedures within the class namespace" +: classes +: methods +: object-specific variables +: common variables +: procedures within the class namespace" -declare-option -hidden -docstring "Set of mappings for Java filetype" \ +declare-option -hidden -docstring "A set of mappings for Java filetype" \ str fzf_tag_java " : annotation declarations : classes @@ -777,21 +778,21 @@ str fzf_tag_java " : methods : packages" -declare-option -hidden -docstring "Set of mappings for JavaProperties filetype" \ +declare-option -hidden -docstring "A set of mappings for JavaProperties filetype" \ str fzf_tag_javaproperties " : keys" -declare-option -hidden -docstring "Set of mappings for JavaScript filetype" \ +declare-option -hidden -docstring "A set of mappings for JavaScript filetype" \ str fzf_tag_javascript " -: functions -: classes -: methods -: properties -: constants -: global variables -: generators" +: functions +: classes +: methods +: properties +: constants +: global variables +: generators" -declare-option -hidden -docstring "Set of mappings for JSON filetype" \ +declare-option -hidden -docstring "A set of mappings for JSON filetype" \ str fzf_tag_json " : objects : arrays @@ -800,54 +801,54 @@ str fzf_tag_json " : booleans : nulls" -declare-option -hidden -docstring "Set of mappings for LdScript filetype" \ +declare-option -hidden -docstring "A set of mappings for LdScript filetype" \ str fzf_tag_ldscript " -: sections -: symbols -: versions -: input sections" +: sections +: symbols +: versions +: input sections" -declare-option -hidden -docstring "Set of mappings for Lisp filetype" \ +declare-option -hidden -docstring "A set of mappings for Lisp filetype" \ str fzf_tag_lisp " : functions" -declare-option -hidden -docstring "Set of mappings for Lua filetype" \ +declare-option -hidden -docstring "A set of mappings for Lua filetype" \ str fzf_tag_lua " : functions" -declare-option -hidden -docstring "Set of mappings for M4 filetype" \ +declare-option -hidden -docstring "A set of mappings for M4 filetype" \ str fzf_tag_m4 " -: macros -: macro files" +: macros +: macro files" -declare-option -hidden -docstring "Set of mappings for Man filetype" \ +declare-option -hidden -docstring "A set of mappings for Man filetype" \ str fzf_tag_man " : titles : sections" -declare-option -hidden -docstring "Set of mappings for Make filetype" \ +declare-option -hidden -docstring "A set of mappings for Make filetype" \ str fzf_tag_make " -: macros -: targets -: makefiles" +: macros +: targets +: makefiles" -declare-option -hidden -docstring "Set of mappings for Markdown filetype" \ +declare-option -hidden -docstring "A set of mappings for Markdown filetype" \ str fzf_tag_markdown " -: chapsters -: sections -: subsections -: subsubsections -: level : subsections -: level : subsections -: regex" +: chapsters +: sections +: subsections +: subsubsections +: level 4 subsections +: level 5 subsections +: regex" -declare-option -hidden -docstring "Set of mappings for MatLab filetype" \ +declare-option -hidden -docstring "A set of mappings for MatLab filetype" \ str fzf_tag_matlab " : function : variable : class" -declare-option -hidden -docstring "Set of mappings for Myrddin filetype" \ +declare-option -hidden -docstring "A set of mappings for Myrddin filetype" \ str fzf_tag_myrddin " : functions : constants @@ -856,45 +857,45 @@ str fzf_tag_myrddin " : traits : packages" -declare-option -hidden -docstring "Set of mappings for ObjectiveC filetype" \ +declare-option -hidden -docstring "A set of mappings for ObjectiveC filetype" \ str fzf_tag_objectivec " -: class interface -: class implementation -: Protocol -: Object's method -: Class' method -: Global variable -: Object field -: : function -: : property -: : type alias -: : type structure -: An enumeration -: : preprocessor macro" +: class interface +: class implementation +: Protocol +: Object's method +: Class' method +: Global variable +: Object field +: A function +: A property +: A type alias +: A type structure +: An enumeration +: A preprocessor macro" -declare-option -hidden -docstring "Set of mappings for OCaml filetype" \ +declare-option -hidden -docstring "A set of mappings for OCaml filetype" \ str fzf_tag_ocaml " -: classes -: Object's method -: Module or functor -: Global variable -: Signature item -: Type name -: : function -: : constructor -: : 'structure' field -: An exception" +: classes +: Object's method +: Module or functor +: Global variable +: Signature item +: Type name +: A function +: A constructor +: A 'structure' field +: An exception" -declare-option -hidden -docstring "Set of mappings for Passwd filetype" \ +declare-option -hidden -docstring "A set of mappings for Passwd filetype" \ str fzf_tag_passwd " : user names" -declare-option -hidden -docstring "Set of mappings for Pascal filetype" \ +declare-option -hidden -docstring "A set of mappings for Pascal filetype" \ str fzf_tag_pascal " : functions : procedures" -declare-option -hidden -docstring "Set of mappings for Perl filetype" \ +declare-option -hidden -docstring "A set of mappings for Perl filetype" \ str fzf_tag_perl " : constants : formats @@ -902,7 +903,7 @@ str fzf_tag_perl " : packages : subroutines" -declare-option -hidden -docstring "Set of mappings for Perl6 filetype" \ +declare-option -hidden -docstring "A set of mappings for Perl6 filetype" \ str fzf_tag_perl6 " : classes : grammars @@ -915,7 +916,7 @@ str fzf_tag_perl6 " : subroutines : tokens" -declare-option -hidden -docstring "Set of mappings for PHP filetype" \ +declare-option -hidden -docstring "A set of mappings for PHP filetype" \ str fzf_tag_php " : classes : constant definitions @@ -926,14 +927,14 @@ str fzf_tag_php " : variables : aliases" -declare-option -hidden -docstring "Set of mappings for Pod filetype" \ +declare-option -hidden -docstring "A set of mappings for Pod filetype" \ str fzf_tag_pod " -: chapters -: sections -: subsections -: subsubsections" +: chapters +: sections +: subsections +: subsubsections" -declare-option -hidden -docstring "Set of mappings for Protobuf filetype" \ +declare-option -hidden -docstring "A set of mappings for Protobuf filetype" \ str fzf_tag_protobuf " : packages : messages @@ -942,7 +943,7 @@ str fzf_tag_protobuf " : enum types : services" -declare-option -hidden -docstring "Set of mappings for PuppetManifest filetype" \ +declare-option -hidden -docstring "A set of mappings for PuppetManifest filetype" \ str fzf_tag_puppetmanifest " : classes : definitions @@ -950,33 +951,33 @@ str fzf_tag_puppetmanifest " : resources : variables" -declare-option -hidden -docstring "Set of mappings for Python filetype" \ +declare-option -hidden -docstring "A set of mappings for Python filetype" \ str fzf_tag_python " -: classes -: functions -: class members -: variables -: name referring : module defined in other file -: modules -: name referring : class/variable/function/module defined in other module" +: classes +: functions +: class members +: variables +: name referring a module defined in other file +: modules +: name referring a class/variable/function/module defined in other module" -declare-option -hidden -docstring "Set of mappings for PythonLoggingConfig filetype" \ +declare-option -hidden -docstring "A set of mappings for PythonLoggingConfig filetype" \ str fzf_tag_pythonloggingconfig " -: logger sections -: logger qualnames" +: logger sections +: logger qualnames" -declare-option -hidden -docstring "Set of mappings for QemuHX filetype" \ +declare-option -hidden -docstring "A set of mappings for QemuHX filetype" \ str fzf_tag_qemuhx " : QEMU Management Protocol dispatch table entries : item in texinfo doc" -declare-option -hidden -docstring "Set of mappings for QtMoc filetype" \ +declare-option -hidden -docstring "A set of mappings for QtMoc filetype" \ str fzf_tag_qtmoc " -: slots -: signals -: properties" +: slots +: signals +: properties" -declare-option -hidden -docstring "Set of mappings for R filetype" \ +declare-option -hidden -docstring "A set of mappings for R filetype" \ str fzf_tag_r " : functions : libraries @@ -984,76 +985,76 @@ str fzf_tag_r " : global variables : function variables" -declare-option -hidden -docstring "Set of mappings for RSpec filetype" \ +declare-option -hidden -docstring "A set of mappings for RSpec filetype" \ str fzf_tag_rspec " : describes : contexts" -declare-option -hidden -docstring "Set of mappings for REXX filetype" \ +declare-option -hidden -docstring "A set of mappings for REXX filetype" \ str fzf_tag_rexx " : subroutines" -declare-option -hidden -docstring "Set of mappings for Robot filetype" \ +declare-option -hidden -docstring "A set of mappings for Robot filetype" \ str fzf_tag_robot " : testcases : keywords : variables" -declare-option -hidden -docstring "Set of mappings for RpmSpec filetype" \ +declare-option -hidden -docstring "A set of mappings for RpmSpec filetype" \ str fzf_tag_rpmspec " : tags : macros : packages : global macros" -declare-option -hidden -docstring "Set of mappings for ReStructuredText filetype" \ +declare-option -hidden -docstring "A set of mappings for ReStructuredText filetype" \ str fzf_tag_restructuredtext " -: chapters -: sections -: subsections -: subsubsections -: targets" +: chapters +: sections +: subsections +: subsubsections +: targets" -declare-option -hidden -docstring "Set of mappings for Ruby filetype" \ +declare-option -hidden -docstring "A set of mappings for Ruby filetype" \ str fzf_tag_ruby " -: classes -: methods -: modules -: singleton methods" +: classes +: methods +: modules +: singleton methods" -declare-option -hidden -docstring "Set of mappings for Rust filetype" \ +declare-option -hidden -docstring "A set of mappings for Rust filetype" \ str fzf_tag_rust " -: module -: structural type -: trait interface -: implementation -: Function -: Enum -: Type Alias -: Global variable -: Macro Definition -: : struct field -: An enum variant -: : method" +: module +: structural type +: trait interface +: implementation +: Function +: Enum +: Type Alias +: Global variable +: Macro Definition +: A struct field +: An enum variant +: A method" -declare-option -hidden -docstring "Set of mappings for Scheme filetype" \ +declare-option -hidden -docstring "A set of mappings for Scheme filetype" \ str fzf_tag_scheme " : functions : sets" -declare-option -hidden -docstring "Set of mappings for Sh filetype" \ +declare-option -hidden -docstring "A set of mappings for Sh filetype" \ str fzf_tag_sh " : aliases : functions : script files : label for here document" -declare-option -hidden -docstring "Set of mappings for SLang filetype" \ +declare-option -hidden -docstring "A set of mappings for SLang filetype" \ str fzf_tag_slang " : functions : namespaces" -declare-option -hidden -docstring "Set of mappings for SML filetype" \ +declare-option -hidden -docstring "A set of mappings for SML filetype" \ str fzf_tag_sml " : exception declarations : function definitions @@ -1063,90 +1064,90 @@ str fzf_tag_sml " : type definitions : value bindings" -declare-option -hidden -docstring "Set of mappings for SQL filetype" \ +declare-option -hidden -docstring "A set of mappings for SQL filetype" \ str fzf_tag_sql " -: cursors -: functions -: record fields -: block label -: packages -: procedures -: subtypes -: tables -: triggers -: variables -: indexes -: events -: publications -: services -: domains -: views -: synonyms -: MobiLink Table Scripts -: MobiLink Conn Scripts -: MobiLink Properties " +: cursors +: functions +: record fields +: block label +: packages +: procedures +: subtypes +: tables +: triggers +: variables +: indexes +: events +: publications +: services +: domains +: views +: synonyms +: MobiLink Table Scripts +: MobiLink Conn Scripts +: MobiLink Properties " -declare-option -hidden -docstring "Set of mappings for SystemdUnit filetype" \ +declare-option -hidden -docstring "A set of mappings for SystemdUnit filetype" \ str fzf_tag_systemdunit " : units" -declare-option -hidden -docstring "Set of mappings for Tcl filetype" \ +declare-option -hidden -docstring "A set of mappings for Tcl filetype" \ str fzf_tag_tcl " : procedures : namespaces" -declare-option -hidden -docstring "Set of mappings for TclOO filetype" \ +declare-option -hidden -docstring "A set of mappings for TclOO filetype" \ str fzf_tag_tcloo " : classes : methods" -declare-option -hidden -docstring "Set of mappings for Tex filetype" \ +declare-option -hidden -docstring "A set of mappings for Tex filetype" \ str fzf_tag_tex " -: parts -: chapters -: sections -: subsections -: subsubsections -: paragraphs -: subparagraphs -: labels -: includes" +: parts +: chapters +: sections +: subsections +: subsubsections +: paragraphs +: subparagraphs +: labels +: includes" -declare-option -hidden -docstring "Set of mappings for TTCN filetype" \ +declare-option -hidden -docstring "A set of mappings for TTCN filetype" \ str fzf_tag_ttcn " -: module definition -: type definition -: constant definition -: template definition -: function definition -: signature definition -: testcase definition -: altstep definition -: group definition -: module parameter definition -: variable instance -: timer instance -: port instance -: record/set/union member -: enumeration value" +: module definition +: type definition +: constant definition +: template definition +: function definition +: signature definition +: testcase definition +: altstep definition +: group definition +: module parameter definition +: variable instance +: timer instance +: port instance +: record/set/union member +: enumeration value" -declare-option -hidden -docstring "Set of mappings for Vera filetype" \ +declare-option -hidden -docstring "A set of mappings for Vera filetype" \ str fzf_tag_vera " -: classes -: macro definitions -: enumerators (values inside an enumeration) -: function definitions -: enumeration names -: interfaces -: class, struct, and union members -: programs -: signals -: tasks -: typedefs -: variable definitions -: included header files" +: classes +: macro definitions +: enumerators (values inside an enumeration) +: function definitions +: enumeration names +: interfaces +: class, struct, and union members +: programs +: signals +: tasks +: typedefs +: variable definitions +: included header files" -declare-option -hidden -docstring "Set of mappings for Verilog filetype" \ +declare-option -hidden -docstring "A set of mappings for Verilog filetype" \ str fzf_tag_verilog " : constants (define, parameter, specparam) : events @@ -1158,41 +1159,41 @@ str fzf_tag_verilog " : tasks : blocks" -declare-option -hidden -docstring "Set of mappings for SystemVerilog filetype" \ +declare-option -hidden -docstring "A set of mappings for SystemVerilog filetype" \ str fzf_tag_systemverilog " -: constants (define, parameter, specparam, enum values) -: events -: functions -: modules -: net data types -: ports -: register data types -: tasks -: blocks -: assertions -: classes -: covergroups -: enumerators -: interfaces -: modports -: packages -: programs -: properties -: structs and unions -: type declarations" +: constants (define, parameter, specparam, enum values) +: events +: functions +: modules +: net data types +: ports +: register data types +: tasks +: blocks +: assertions +: classes +: covergroups +: enumerators +: interfaces +: modports +: packages +: programs +: properties +: structs and unions +: type declarations" -declare-option -hidden -docstring "Set of mappings for VHDL filetype" \ +declare-option -hidden -docstring "A set of mappings for VHDL filetype" \ str fzf_tag_vhdl " -: constant declarations -: type definitions -: subtype definitions -: record names -: entity declarations -: function prototypes and declarations -: procedure prototypes and declarations -: package definitions" +: constant declarations +: type definitions +: subtype definitions +: record names +: entity declarations +: function prototypes and declarations +: procedure prototypes and declarations +: package definitions" -declare-option -hidden -docstring "Set of mappings for Vim filetype" \ +declare-option -hidden -docstring "A set of mappings for Vim filetype" \ str fzf_tag_vim " : autocommand groups : user-defined commands @@ -1201,7 +1202,7 @@ str fzf_tag_vim " : variable definitions : vimball filename" -declare-option -hidden -docstring "Set of mappings for WindRes filetype" \ +declare-option -hidden -docstring "A set of mappings for WindRes filetype" \ str fzf_tag_windres " : dialogs : menus @@ -1212,15 +1213,15 @@ str fzf_tag_windres " : versions : accelerators" -declare-option -hidden -docstring "Set of mappings for YACC filetype" \ +declare-option -hidden -docstring "A set of mappings for YACC filetype" \ str fzf_tag_yacc " : labels" -declare-option -hidden -docstring "Set of mappings for YumRepo filetype" \ +declare-option -hidden -docstring "A set of mappings for YumRepo filetype" \ str fzf_tag_yumrepo " : repository id" -declare-option -hidden -docstring "Set of mappings for Zephir filetype" \ +declare-option -hidden -docstring "A set of mappings for Zephir filetype" \ str fzf_tag_zephir " : classes : constant definitions @@ -1231,41 +1232,41 @@ str fzf_tag_zephir " : variables : aliases" -declare-option -hidden -docstring "Set of mappings for DBusIntrospect filetype" \ +declare-option -hidden -docstring "A set of mappings for DBusIntrospect filetype" \ str fzf_tag_dbusintrospect " : interfaces : methods : signals : properties" -declare-option -hidden -docstring "Set of mappings for Glade filetype" \ +declare-option -hidden -docstring "A set of mappings for Glade filetype" \ str fzf_tag_glade " : identifiers : classes : handlers" -declare-option -hidden -docstring "Set of mappings for Maven2 filetype" \ +declare-option -hidden -docstring "A set of mappings for Maven2 filetype" \ str fzf_tag_maven2 " : group identifiers : artifact identifiers : properties : repository identifiers" -declare-option -hidden -docstring "Set of mappings for PlistXML filetype" \ +declare-option -hidden -docstring "A set of mappings for PlistXML filetype" \ str fzf_tag_plistxml " : keys" -declare-option -hidden -docstring "Set of mappings for RelaxNG filetype" \ +declare-option -hidden -docstring "A set of mappings for RelaxNG filetype" \ str fzf_tag_relaxng " : elements : attributes : named patterns" -declare-option -hidden -docstring "Set of mappings for SVG filetype" \ +declare-option -hidden -docstring "A set of mappings for SVG filetype" \ str fzf_tag_svg " : id attributes" -declare-option -hidden -docstring "Set of mappings for XSLT filetype" \ +declare-option -hidden -docstring "A set of mappings for XSLT filetype" \ str fzf_tag_xslt " : stylesheets : parameters @@ -1273,24 +1274,24 @@ str fzf_tag_xslt " : matched template : variables" -declare-option -hidden -docstring "Set of mappings for Yaml filetype" \ +declare-option -hidden -docstring "A set of mappings for Yaml filetype" \ str fzf_tag_yaml " : anchors" -declare-option -hidden -docstring "Set of mappings for AnsiblePlaybook filetype" \ +declare-option -hidden -docstring "A set of mappings for AnsiblePlaybook filetype" \ str fzf_tag_ansibleplaybook " : plays" define-command -hidden fzf-tag -params ..1 %{ evaluate-commands %sh{ case $kak_opt_filetype in ada) - additional_keybindings="--expect alt-P --expect alt-p --expect alt-T --expect alt-t --expect alt-U --expect alt-u --expect alt-c --expect alt-l --expect alt-V --expect alt-v --expect alt-f --expect alt-n --expect alt-x --expect alt-R --expect alt-r --expect alt-K --expect alt-k --expect alt-O --expect alt-o --expect alt-E --expect alt-e --expect alt-b --expect alt-i --expect alt-a --expect alt-y --expect alt-S" + additional_keybindings="--expect ctrl-alt-p --expect alt-p --expect ctrl-alt-t --expect alt-t --expect ctrl-alt-u --expect alt-u --expect alt-c --expect alt-l --expect ctrl-alt-v --expect alt-v --expect alt-f --expect alt-n --expect alt-x --expect ctrl-alt-r --expect alt-r --expect ctrl-alt-k --expect alt-k --expect ctrl-alt-o --expect alt-o --expect ctrl-alt-e --expect alt-e --expect alt-b --expect alt-i --expect alt-a --expect alt-y --expect ctrl-alt-s" additional_message=$kak_opt_fzf_tag_ada ;; ant) - additional_keybindings="--expect alt-p --expect alt-t --expect alt-P --expect alt-i" + additional_keybindings="--expect alt-p --expect alt-t --expect ctrl-alt-p --expect alt-i" additional_message=$kak_opt_fzf_tag_ant ;; asciidoc) - additional_keybindings="--expect alt-c --expect alt-s --expect alt-S --expect alt-t --expect alt-T --expect alt-u --expect alt-a" + additional_keybindings="--expect alt-c --expect alt-s --expect ctrl-alt-s --expect alt-t --expect ctrl-alt-t --expect alt-u --expect alt-a" additional_message=$kak_opt_fzf_tag_asciidoc ;; asm) additional_keybindings="--expect alt-d --expect alt-l --expect alt-m --expect alt-t --expect alt-s" @@ -1302,10 +1303,10 @@ define-command -hidden fzf-tag -params ..1 %{ evaluate-commands %sh{ additional_keybindings="--expect alt-p --expect alt-t --expect alt-m --expect alt-w --expect alt-e --expect alt-s --expect alt-c --expect alt-d" additional_message=$kak_opt_fzf_tag_autoconf ;; autoit) - additional_keybindings="--expect alt-f --expect alt-r --expect alt-g --expect alt-l --expect alt-S" + additional_keybindings="--expect alt-f --expect alt-r --expect alt-g --expect alt-l --expect ctrl-alt-s" additional_message=$kak_opt_fzf_tag_autoit ;; automake) - additional_keybindings="--expect alt-d --expect alt-P --expect alt-M --expect alt-T --expect alt-L --expect alt-S --expect alt-D --expect alt-c" + additional_keybindings="--expect alt-d --expect ctrl-alt-p --expect ctrl-alt-m --expect ctrl-alt-t --expect ctrl-alt-l --expect ctrl-alt-s --expect ctrl-alt-d --expect alt-c" additional_message=$kak_opt_fzf_tag_automake ;; awk) additional_keybindings="--expect alt-f" @@ -1320,13 +1321,13 @@ define-command -hidden fzf-tag -params ..1 %{ evaluate-commands %sh{ additional_keybindings="--expect alt-f --expect alt-n" additional_message=$kak_opt_fzf_tag_clojure ;; cmake) - additional_keybindings="--expect alt-f --expect alt-m --expect alt-t --expect alt-v --expect alt-D --expect alt-p --expect alt-r" + additional_keybindings="--expect alt-f --expect alt-m --expect alt-t --expect alt-v --expect ctrl-alt-d --expect alt-p --expect alt-r" additional_message=$kak_opt_fzf_tag_cmake ;; c) - additional_keybindings="--expect alt-d --expect alt-e --expect alt-f --expect alt-g --expect alt-h --expect alt-l --expect alt-m --expect alt-p --expect alt-s --expect alt-t --expect alt-u --expect alt-v --expect alt-x --expect alt-z --expect alt-L" + additional_keybindings="--expect alt-d --expect alt-e --expect alt-f --expect alt-g --expect alt-h --expect alt-l --expect alt-m --expect alt-p --expect alt-s --expect alt-t --expect alt-u --expect alt-v --expect alt-x --expect alt-z --expect ctrl-alt-l" additional_message=$kak_opt_fzf_tag_c ;; cpp) - additional_keybindings="--expect alt-d --expect alt-e --expect alt-f --expect alt-g --expect alt-h --expect alt-l --expect alt-m --expect alt-p --expect alt-s --expect alt-t --expect alt-u --expect alt-v --expect alt-x --expect alt-z --expect alt-L --expect alt-c --expect alt-n --expect alt-A --expect alt-N --expect alt-U" + additional_keybindings="--expect alt-d --expect alt-e --expect alt-f --expect alt-g --expect alt-h --expect alt-l --expect alt-m --expect alt-p --expect alt-s --expect alt-t --expect alt-u --expect alt-v --expect alt-x --expect alt-z --expect ctrl-alt-l --expect alt-c --expect alt-n --expect ctrl-alt-a --expect ctrl-alt-n --expect ctrl-alt-u" additional_message=$kak_opt_fzf_tag_cpp ;; cpreprocessor) additional_keybindings="--expect alt-d --expect alt-h" @@ -1335,22 +1336,25 @@ define-command -hidden fzf-tag -params ..1 %{ evaluate-commands %sh{ additional_keybindings="--expect alt-c --expect alt-s --expect alt-i" additional_message=$kak_opt_fzf_tag_css ;; csharp) - additional_keybindings="--expect alt-c --expect alt-d --expect alt-e --expect alt-E --expect alt-f --expect alt-g --expect alt-i --expect alt-l --expect alt-m --expect alt-n --expect alt-p --expect alt-s --expect alt-t" + additional_keybindings="--expect alt-c --expect alt-d --expect alt-e --expect ctrl-alt-e --expect alt-f --expect alt-g --expect alt-i --expect alt-l --expect alt-m --expect alt-n --expect alt-p --expect alt-s --expect alt-t" additional_message=$kak_opt_fzf_tag_csharp ;; ctags) additional_keybindings="--expect alt-l --expect alt-k" additional_message=$kak_opt_fzf_tag_ctags ;; cobol) - additional_keybindings="--expect alt-p --expect alt-d --expect alt-S --expect alt-f --expect alt-g --expect alt-P --expect alt-s --expect alt-D" + additional_keybindings="--expect alt-p --expect alt-d --expect ctrl-alt-s --expect ctrl-alt-F --expect alt-g --expect ctrl-alt-p --expect alt-s --expect ctrl-alt-d" additional_message=$kak_opt_fzf_tag_cobol ;; cuda) - additional_keybindings="--expect alt-d --expect alt-e --expect alt-f --expect alt-g --expect alt-h --expect alt-l --expect alt-m --expect alt-p --expect alt-s --expect alt-t --expect alt-u --expect alt-v --expect alt-x --expect alt-z --expect alt-L" + additional_keybindings="--expect alt-d --expect alt-e --expect alt-f --expect alt-g --expect alt-h --expect alt-l --expect alt-m --expect alt-p --expect alt-s --expect alt-t --expect alt-u --expect alt-v --expect alt-x --expect alt-z --expect ctrl-alt-l" additional_message=$kak_opt_fzf_tag_cuda ;; d) - additional_keybindings="--expect alt-a --expect alt-c --expect alt-g --expect alt-e --expect alt-x --expect alt-f --expect alt-i --expect alt-l --expect alt-m --expect alt-X --expect alt-M --expect alt-n --expect alt-p --expect alt-s --expect alt-T --expect alt-u --expect alt-v --expect alt-V" + additional_keybindings="--expect alt-a --expect alt-c --expect alt-g --expect alt-e --expect alt-x --expect alt-f --expect alt-i --expect alt-l --expect alt-m --expect ctrl-alt-x --expect ctrl-alt-m --expect alt-n --expect alt-p --expect alt-s --expect ctrl-alt-t --expect alt-u --expect alt-v --expect ctrl-alt-v" additional_message=$kak_opt_fzf_tag_d ;; - ddtd) - additional_keybindings="--expect alt-E --expect alt-p --expect alt-e --expect alt-a --expect alt-n" + diff) + additional_keybindings="--expect alt-m --expect alt-n --expect alt-d --expect alt-h" + additional_message=$kak_opt_fzf_tag_diff ;; + dtd) + additional_keybindings="--expect ctrl-alt-e --expect alt-p --expect alt-e --expect alt-a --expect alt-n" additional_message=$kak_opt_fzf_tag_dtd ;; dts) additional_keybindings="--expect alt-p --expect alt-l --expect alt-r" @@ -1358,8 +1362,11 @@ define-command -hidden fzf-tag -params ..1 %{ evaluate-commands %sh{ dosbatch) additional_keybindings="--expect alt-l --expect alt-v" additional_message=$kak_opt_fzf_tag_dosbatch ;; - eelm) - additional_keybindings="--expect alt-m --expect alt-n --expect alt-p --expect alt-t --expect alt-c --expect alt-a --expect alt-f" + eiffel) + additional_keybindings="--expect alt-c --expect alt-f --expect alt-l" + additional_message=$kak_opt_fzf_tag_eiffel ;; + elm) + additional_keybindings="--expect ctrl-alt-M --expect ctrl-alt-N --expect ctrl-alt-P --expect ctrl-alt-T --expect ctrl-alt-C --expect ctrl-alt-A --expect ctrl-alt-F" additional_message=$kak_opt_fzf_tag_elm ;; erlang) additional_keybindings="--expect alt-d --expect alt-f --expect alt-m --expect alt-r --expect alt-t" @@ -1371,25 +1378,25 @@ define-command -hidden fzf-tag -params ..1 %{ evaluate-commands %sh{ additional_keybindings="--expect alt-f --expect alt-c --expect alt-m --expect alt-p --expect alt-v --expect alt-x" additional_message=$kak_opt_fzf_tag_flex ;; fortran) - additional_keybindings="--expect alt-b --expect alt-c --expect alt-e --expect alt-E --expect alt-f --expect alt-i --expect alt-k --expect alt-l --expect alt-L --expect alt-m --expect alt-M --expect alt-n --expect alt-N --expect alt-p --expect alt-P --expect alt-s --expect alt-t --expect alt-v --expect alt-S" + additional_keybindings="--expect alt-b --expect alt-c --expect alt-e --expect ctrl-alt-e --expect alt-f --expect alt-i --expect alt-k --expect alt-l --expect ctrl-alt-l --expect alt-m --expect ctrl-alt-m --expect alt-n --expect ctrl-alt-n --expect alt-p --expect ctrl-alt-p --expect alt-s --expect alt-t --expect alt-v --expect ctrl-alt-s" additional_message=$kak_opt_fzf_tag_fortran ;; fypp) additional_keybindings="--expect alt-m" additional_message=$kak_opt_fzf_tag_fypp ;; gdbinit) - additional_keybindings="--expect alt-d --expect alt-D --expect alt-t --expect alt-l" + additional_keybindings="--expect alt-d --expect ctrl-alt-d --expect alt-t --expect alt-l" additional_message=$kak_opt_fzf_tag_gdbinit ;; go) - additional_keybindings="--expect alt-p --expect alt-f --expect alt-c --expect alt-t --expect alt-v --expect alt-s --expect alt-i --expect alt-m --expect alt-M --expect alt-u --expect alt-P" + additional_keybindings="--expect alt-p --expect alt-f --expect alt-c --expect alt-t --expect alt-v --expect alt-s --expect alt-i --expect alt-m --expect ctrl-alt-m --expect alt-u --expect ctrl-alt-p" additional_message=$kak_opt_fzf_tag_go ;; html) - additional_keybindings="--expect alt-a --expect alt-h --expect alt-i --expect alt-j" + additional_keybindings="--expect alt-a --expect ctrl-alt-H --expect ctrl-alt-I --expect ctrl-alt-J" additional_message=$kak_opt_fzf_tag_html ;; iniconf) additional_keybindings="--expect alt-s --expect alt-k" additional_message=$kak_opt_fzf_tag_iniconf ;; itcl) - additional_keybindings="--expect alt-c --expect alt-m --expect alt-v --expect alt-C --expect alt-p" + additional_keybindings="--expect alt-c --expect alt-m --expect alt-v --expect ctrl-alt-c --expect alt-p" additional_message=$kak_opt_fzf_tag_itcl ;; java) additional_keybindings="--expect alt-a --expect alt-c --expect alt-e --expect alt-f --expect alt-g --expect alt-i --expect alt-l --expect alt-m --expect alt-p" @@ -1398,13 +1405,13 @@ define-command -hidden fzf-tag -params ..1 %{ evaluate-commands %sh{ additional_keybindings="--expect alt-k" additional_message=$kak_opt_fzf_tag_javaproperties ;; javascript) - additional_keybindings="--expect alt-f --expect alt-c --expect alt-m --expect alt-p --expect alt-C --expect alt-v --expect alt-g" + additional_keybindings="--expect alt-f --expect alt-c --expect alt-m --expect alt-p --expect ctrl-alt-c --expect alt-v --expect alt-g" additional_message=$kak_opt_fzf_tag_javascript ;; json) additional_keybindings="--expect alt-o --expect alt-a --expect alt-n --expect alt-s --expect alt-b --expect alt-z" additional_message=$kak_opt_fzf_tag_json ;; ldscript) - additional_keybindings="--expect alt-S --expect alt-s --expect alt-v --expect alt-i" + additional_keybindings="--expect ctrl-alt-s --expect alt-s --expect alt-v --expect alt-i" additional_message=$kak_opt_fzf_tag_ldscript ;; lisp) additional_keybindings="--expect alt-f" @@ -1413,16 +1420,16 @@ define-command -hidden fzf-tag -params ..1 %{ evaluate-commands %sh{ additional_keybindings="--expect alt-f" additional_message=$kak_opt_fzf_tag_lua ;; m4) - additional_keybindings="--expect alt-d --expect alt-I" + additional_keybindings="--expect alt-d --expect ctrl-alt-i" additional_message=$kak_opt_fzf_tag_m4 ;; man) additional_keybindings="--expect alt-t --expect alt-s" additional_message=$kak_opt_fzf_tag_man ;; make) - additional_keybindings="--expect alt-m --expect alt-t --expect alt-I" + additional_keybindings="--expect alt-m --expect alt-t --expect ctrl-alt-i" additional_message=$kak_opt_fzf_tag_make ;; markdown) - additional_keybindings="--expect alt-c --expect alt-s --expect alt-S --expect alt-t --expect alt-T --expect alt-u --expect alt-r" + additional_keybindings="--expect alt-c --expect alt-s --expect ctrl-alt-s --expect alt-t --expect ctrl-alt-t --expect alt-u --expect alt-r" additional_message=$kak_opt_fzf_tag_markdown ;; matlab) additional_keybindings="--expect alt-f --expect alt-v --expect alt-c" @@ -1431,10 +1438,10 @@ define-command -hidden fzf-tag -params ..1 %{ evaluate-commands %sh{ additional_keybindings="--expect alt-f --expect alt-c --expect alt-v --expect alt-t --expect alt-r --expect alt-p" additional_message=$kak_opt_fzf_tag_myrddin ;; objectivec) - additional_keybindings="--expect alt-i --expect alt-I --expect alt-P --expect alt-m --expect alt-c --expect alt-v --expect alt-E --expect alt-f --expect alt-p --expect alt-t --expect alt-s --expect alt-e --expect alt-M" + additional_keybindings="--expect alt-i --expect ctrl-alt-i --expect ctrl-alt-p --expect ctrl-alt-M --expect ctrl-alt-C --expect ctrl-alt-V --expect ctrl-alt-e --expect ctrl-alt-F --expect ctrl-alt-P --expect ctrl-alt-T --expect ctrl-alt-S --expect ctrl-alt-E --expect ctrl-alt-m" additional_message=$kak_opt_fzf_tag_objectivec ;; ocaml) - additional_keybindings="--expect alt-c --expect alt-m --expect alt-M --expect alt-v --expect alt-p --expect alt-t --expect alt-f --expect alt-C --expect alt-r --expect alt-e" + additional_keybindings="--expect alt-c --expect ctrl-alt-M --expect ctrl-alt-m --expect ctrl-alt-V --expect ctrl-alt-P --expect ctrl-alt-T --expect ctrl-alt-F --expect ctrl-alt-c --expect ctrl-alt-R --expect ctrl-alt-E" additional_message=$kak_opt_fzf_tag_ocaml ;; passwd) additional_keybindings="--expect alt-u" @@ -1452,22 +1459,25 @@ define-command -hidden fzf-tag -params ..1 %{ evaluate-commands %sh{ additional_keybindings="--expect alt-c --expect alt-d --expect alt-f --expect alt-i --expect alt-l --expect alt-n --expect alt-t --expect alt-v --expect alt-a" additional_message=$kak_opt_fzf_tag_php ;; pod) - additional_keybindings="--expect alt-c --expect alt-s --expect alt-S --expect alt-t" + additional_keybindings="--expect alt-c --expect alt-s --expect ctrl-alt-s --expect alt-t" additional_message=$kak_opt_fzf_tag_pod ;; protobuf) - additional_keybindings="--expect alt-p --expect alt-m --expect alt-f --expect alt-e --expect alt-g --expect alt-s --expect alt-r" + additional_keybindings="--expect alt-p --expect alt-m --expect alt-f --expect alt-e --expect alt-g --expect alt-s --expect ctrl-alt-R" additional_message=$kak_opt_fzf_tag_protobuf ;; - puppetmanpython) - additional_keybindings="--expect alt-c --expect alt-f --expect alt-m --expect alt-v --expect alt-I --expect alt-i --expect alt-x --expect alt-z --expect alt-l" + puppetmanifest) + additional_keybindings="--expect alt-c --expect alt-d --expect alt-n --expect alt-r --expect alt-v" + additional_message=$kak_opt_fzf_tag_puppetmanifest ;; + python) + additional_keybindings="--expect alt-c --expect alt-f --expect alt-m --expect alt-v --expect ctrl-alt-i --expect alt-i --expect alt-x --expect alt-z --expect alt-l" additional_message=$kak_opt_fzf_tag_python ;; pythonloggingconfig) - additional_keybindings="--expect alt-L --expect alt-q" + additional_keybindings="--expect ctrl-alt-l --expect alt-q" additional_message=$kak_opt_fzf_tag_pythonloggingconfig ;; qemuhx) - additional_keybindings="--expect alt-q --expect alt-i" + additional_keybindings="--expect ctrl-alt-Q --expect alt-i" additional_message=$kak_opt_fzf_tag_qemuhx ;; qtmoc) - additional_keybindings="--expect alt-s --expect alt-S --expect alt-p" + additional_keybindings="--expect alt-s --expect ctrl-alt-s --expect alt-p" additional_message=$kak_opt_fzf_tag_qtmoc ;; r) additional_keybindings="--expect alt-f --expect alt-l --expect alt-s --expect alt-g --expect alt-v" @@ -1485,13 +1495,13 @@ define-command -hidden fzf-tag -params ..1 %{ evaluate-commands %sh{ additional_keybindings="--expect alt-t --expect alt-m --expect alt-p --expect alt-g" additional_message=$kak_opt_fzf_tag_rpmspec ;; restructuredtext) - additional_keybindings="--expect alt-c --expect alt-s --expect alt-S --expect alt-t --expect alt-T" + additional_keybindings="--expect alt-c --expect alt-s --expect ctrl-alt-s --expect alt-t --expect ctrl-alt-t" additional_message=$kak_opt_fzf_tag_restructuredtext ;; ruby) - additional_keybindings="--expect alt-c --expect alt-f --expect alt-m --expect alt-S" + additional_keybindings="--expect alt-c --expect alt-f --expect alt-m --expect ctrl-alt-s" additional_message=$kak_opt_fzf_tag_ruby ;; rust) - additional_keybindings="--expect alt-n --expect alt-s --expect alt-i --expect alt-c --expect alt-f --expect alt-g --expect alt-t --expect alt-v --expect alt-M --expect alt-m --expect alt-e --expect alt-P" + additional_keybindings="--expect alt-n --expect alt-s --expect alt-i --expect alt-c --expect ctrl-alt-F --expect ctrl-alt-G --expect ctrl-alt-T --expect ctrl-alt-V --expect ctrl-alt-m --expect ctrl-alt-M --expect ctrl-alt-E --expect ctrl-alt-p" additional_message=$kak_opt_fzf_tag_rust ;; scheme) additional_keybindings="--expect alt-f --expect alt-s" @@ -1506,7 +1516,7 @@ define-command -hidden fzf-tag -params ..1 %{ evaluate-commands %sh{ additional_keybindings="--expect alt-e --expect alt-f --expect alt-c --expect alt-s --expect alt-r --expect alt-t --expect alt-v" additional_message=$kak_opt_fzf_tag_sml ;; sql) - additional_keybindings="--expect alt-c --expect alt-d --expect alt-f --expect alt-E --expect alt-l --expect alt-L --expect alt-P --expect alt-p --expect alt-r --expect alt-s --expect alt-t --expect alt-T --expect alt-v --expect alt-i --expect alt-e --expect alt-U --expect alt-R --expect alt-D --expect alt-V --expect alt-n --expect alt-x --expect alt-y --expect alt-z" + additional_keybindings="--expect alt-c --expect alt-d --expect alt-f --expect ctrl-alt-e --expect alt-l --expect ctrl-alt-l --expect ctrl-alt-p --expect alt-p --expect alt-r --expect alt-s --expect alt-t --expect ctrl-alt-t --expect alt-v --expect alt-i --expect alt-e --expect ctrl-alt-u --expect ctrl-alt-r --expect ctrl-alt-d --expect ctrl-alt-v --expect alt-n --expect ctrl-alt-X --expect ctrl-alt-Y --expect ctrl-alt-Z" additional_message=$kak_opt_fzf_tag_sql ;; systemdunit) additional_keybindings="--expect alt-u" @@ -1518,22 +1528,22 @@ define-command -hidden fzf-tag -params ..1 %{ evaluate-commands %sh{ additional_keybindings="--expect alt-c --expect alt-m" additional_message=$kak_opt_fzf_tag_tcloo ;; tex) - additional_keybindings="--expect alt-p --expect alt-c --expect alt-s --expect alt-u --expect alt-b --expect alt-P --expect alt-G --expect alt-l --expect alt-i" + additional_keybindings="--expect alt-p --expect alt-c --expect alt-s --expect alt-u --expect alt-b --expect ctrl-alt-p --expect ctrl-alt-g --expect alt-l --expect alt-i" additional_message=$kak_opt_fzf_tag_tex ;; ttcn) - additional_keybindings="--expect alt-M --expect alt-t --expect alt-c --expect alt-d --expect alt-f --expect alt-s --expect alt-C --expect alt-a --expect alt-G --expect alt-P --expect alt-v --expect alt-T --expect alt-p --expect alt-m --expect alt-e" + additional_keybindings="--expect ctrl-alt-m --expect alt-t --expect alt-c --expect alt-d --expect alt-f --expect alt-s --expect ctrl-alt-c --expect alt-a --expect ctrl-alt-g --expect ctrl-alt-p --expect alt-v --expect ctrl-alt-t --expect alt-p --expect alt-m --expect alt-e" additional_message=$kak_opt_fzf_tag_ttcn ;; vera) - additional_keybindings="--expect alt-c --expect alt-d --expect alt-e --expect alt-f --expect alt-g --expect alt-i --expect alt-l --expect alt-m --expect alt-p --expect alt-P --expect alt-s --expect alt-t --expect alt-T --expect alt-v --expect alt-x --expect alt-h" + additional_keybindings="--expect alt-c --expect alt-d --expect alt-e --expect alt-f --expect alt-g --expect alt-i --expect alt-l --expect alt-m --expect alt-p --expect ctrl-alt-p --expect alt-s --expect alt-t --expect ctrl-alt-t --expect alt-v --expect alt-x --expect alt-h" additional_message=$kak_opt_fzf_tag_vera ;; verilog) additional_keybindings="--expect alt-c --expect alt-e --expect alt-f --expect alt-m --expect alt-n --expect alt-p --expect alt-r --expect alt-t --expect alt-b" additional_message=$kak_opt_fzf_tag_verilog ;; systemverilog) - additional_keybindings="--expect alt-c --expect alt-e --expect alt-f --expect alt-m --expect alt-n --expect alt-p --expect alt-r --expect alt-t --expect alt-b --expect alt-A --expect alt-C --expect alt-V --expect alt-E --expect alt-I --expect alt-M --expect alt-K --expect alt-P --expect alt-Q --expect alt-R --expect alt-S --expect alt-T" + additional_keybindings="--expect alt-c --expect alt-e --expect alt-f --expect alt-m --expect alt-n --expect alt-p --expect alt-r --expect alt-t --expect alt-b --expect ctrl-alt-a --expect ctrl-alt-c --expect ctrl-alt-v --expect ctrl-alt-e --expect ctrl-alt-i --expect ctrl-alt-m --expect ctrl-alt-k --expect ctrl-alt-p --expect ctrl-alt-q --expect ctrl-alt-r --expect ctrl-alt-s --expect ctrl-alt-t" additional_message=$kak_opt_fzf_tag_systemverilog ;; vhdl) - additional_keybindings="--expect alt-c --expect alt-t --expect alt-T --expect alt-r --expect alt-e --expect alt-C --expect alt-d --expect alt-f --expect alt-p --expect alt-P --expect alt-l" + additional_keybindings="--expect alt-c --expect alt-t --expect ctrl-alt-t --expect alt-r --expect alt-e --expect ctrl-alt-c --expect alt-d --expect alt-f --expect alt-p --expect ctrl-alt-p --expect alt-l" additional_message=$kak_opt_fzf_tag_vhdl ;; vim) additional_keybindings="--expect alt-a --expect alt-c --expect alt-f --expect alt-m --expect alt-v --expect alt-n"