فهرست منبع

Map alt-g to git status for fish

DricomDragon 4 سال پیش
والد
کامیت
57d5637892

+ 3 - 0
Install/Templates/config/fish/functions/fish_user_key_bindings.fish

@@ -0,0 +1,3 @@
+function fish_user_key_bindings --description 'My custom key bindings'
+	bind \eg git_status_short
+end

+ 3 - 0
Install/Templates/config/fish/functions/git_status_short.fish

@@ -0,0 +1,3 @@
+function git_status_short --description 'Git status encapsulation for key binding'
+	git status --short
+end