configs  Check-in [421abe3f32]

Overview
Comment:fish: Switch to hybrid bindings
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 421abe3f322683b3a2ac688c1afd19f0a70ad13686b1f953155c96104b891ee4
User & Date: js on 2020-03-01 11:55:47
Other Links: manifest | tags
Context
2020-05-09
13:10
config.fish: Disable cursor blinking check-in: 0a734afdea user: js tags: trunk
2020-03-01
11:55
fish: Switch to hybrid bindings check-in: 421abe3f32 user: js tags: trunk
2020-02-29
23:09
Add 0x0st.fish check-in: c0c77418d9 user: js tags: trunk
Changes

Modified fish/config.fish from [1ca29cd971] to [3c2864cdb6].

1

2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
9

+







set -g fish_greeting
set -g fish_key_bindings hybrid_bindings
set -g fish_escape_delay_ms 300

set -g fish_color_autosuggestion 303030
set -g fish_color_command 205cb3
set -g fish_color_comment 6600cc
set -g fish_color_cwd 209060
set -g fish_color_end 730099

Added fish/functions/hybrid_bindings.fish version [5761a8db58].








1
2
3
4
5
6
7
+
+
+
+
+
+
+
function hybrid_bindings --description 'Vi-style bindings that inherit emacs-style bindings in all modes'
    for mode in default insert visual
        fish_default_key_bindings -M $mode
    end

    fish_vi_key_bindings --no-erase
end