fisher/functions/__fisher_key_bindings_disable.fish
Jorge Bucaran 3308240929
Make __fisher_key_bindings_undo smarter. Close #121.
Until now key_bindings.fish only allowed simple bind <args>
staments and would fail for conditional statements, etc.
2016-02-25 10:08:48 +09:00

13 lines
440 B
Fish

function __fisher_key_bindings_disable -a plugin user_key_bindings
fish_indent < $fisher_binds | __fisher_key_bindings_undo $plugin | source ^ /dev/null
__fisher_key_bindings_delete $plugin > $fisher_binds.tmp < $fisher_binds
command mv -f $fisher_binds.tmp $fisher_binds
if test ! -s $fisher_binds
sed -i.tmp '/__fisher_key_bindings/d' $user_key_bindings
command rm -f $user_key_bindings.tmp
end
end