Skip to content

Commit

Permalink
fish: add open conflicting files with vscode function
Browse files Browse the repository at this point in the history
  • Loading branch information
matheusvellone committed Jul 30, 2018
1 parent 5c723cf commit 2dd3f60
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fish/functions.fish
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ function git-delete-tag
git tag -d $argv
git push origin :refs/tags/$argv
end

function git-open-conflict
git status -s | grep 'UU\|AA' | awk '{print $2}' | xargs code
end

0 comments on commit 2dd3f60

Please sign in to comment.