aboutsummaryrefslogtreecommitdiff
path: root/fish/functions/_fzf_configure_bindings_help.fish
diff options
context:
space:
mode:
authorIndrajith2024-07-03 02:03:35 +0530
committerIndrajith2024-07-03 02:03:35 +0530
commit824022cd1f633c70c4d2782934251616756f4668 (patch)
treea310eb4bf72b26c2d110838b8c487daaa3537bea /fish/functions/_fzf_configure_bindings_help.fish
parent57eb70137b5bbcdabdc0f02eea5477b3e5f845a1 (diff)
downloaddots-824022cd1f633c70c4d2782934251616756f4668.tar.gz
dots-824022cd1f633c70c4d2782934251616756f4668.tar.bz2
dots-824022cd1f633c70c4d2782934251616756f4668.zip
Dots Updated
* Adds GTK Themes * Adds wlogout * Adds tmux config * Adds Pywal-16-colors * Removed unwanted gtk folders * Config Updates * Fish * Hyprland * Hyprlock * Hyprpaper * waybar
Diffstat (limited to 'fish/functions/_fzf_configure_bindings_help.fish')
-rw-r--r--fish/functions/_fzf_configure_bindings_help.fish43
1 files changed, 0 insertions, 43 deletions
diff --git a/fish/functions/_fzf_configure_bindings_help.fish b/fish/functions/_fzf_configure_bindings_help.fish
deleted file mode 100644
index ecfe68ec8..000000000
--- a/fish/functions/_fzf_configure_bindings_help.fish
+++ /dev/null
@@ -1,43 +0,0 @@
-function _fzf_configure_bindings_help --description "Prints the help message for fzf_configure_bindings."
- echo "\
-USAGE:
- fzf_configure_bindings [--COMMAND=[KEY_SEQUENCE]...]
-
-DESCRIPTION
- fzf_configure_bindings installs key bindings for fzf.fish's commands and erases any bindings it
- previously installed. It installs bindings for both default and insert modes. fzf.fish executes
- it without options on fish startup to install the out-of-the-box key bindings.
-
- By default, commands are bound to a mnemonic key sequence, shown below. Each command's binding
- can be configured using a namesake corresponding option:
- COMMAND | DEFAULT KEY SEQUENCE | CORRESPONDING OPTION
- Search Directory | Ctrl+Alt+F (F for file) | --directory
- Search Git Log | Ctrl+Alt+L (L for log) | --git_log
- Search Git Status | Ctrl+Alt+S (S for status) | --git_status
- Search History | Ctrl+R (R for reverse) | --history
- Search Processes | Ctrl+Alt+P (P for process) | --processes
- Search Variables | Ctrl+V (V for variable) | --variables
- Override a command's binding by specifying its corresponding option with the desired key
- sequence. Disable a command's binding by specifying its corresponding option with no value.
-
- Because fzf_configure_bindings erases bindings it previously installed, it can be cleanly
- executed multiple times. Once the desired fzf_configure_bindings command has been found, add it
- to your config.fish in order to persist the customized bindings.
-
- In terms of validation, fzf_configure_bindings fails if passed unknown options. It expects an
- equals sign between an option's name and value. However, it does not validate key sequences.
-
- Pass -h or --help to print this help message and exit.
-
-EXAMPLES
- Default bindings but bind Search Directory to Ctrl+F and Search Variables to Ctrl+Alt+V
- \$ fzf_configure_bindings --directory=\cf --variables=\e\cv
- Default bindings but disable Search History
- \$ fzf_configure_bindings --history=
- An agglomeration of different options
- \$ fzf_configure_bindings --git_status=\cg --history=\ch --variables= --processes=
-
-SEE Also
- To learn more about fish key bindings, see bind(1) and fish_key_reader(1).
-"
-end