소스 검색

Add binding for invoking git diff from fish

With alt-d
DricomDragon 4 년 전
부모
커밋
120267f743
2개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      Install/Templates/config/fish/functions/fish_user_key_bindings.fish
  2. 6 0
      Install/Templates/config/fish/functions/git_diff.fish

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

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

+ 6 - 0
Install/Templates/config/fish/functions/git_diff.fish

@@ -0,0 +1,6 @@
+function git_diff --description 'Git diff encapsulation for key binding'
+	echo
+	git diff
+	echo \n
+	commandline -f repaint
+end