Vim Golang/Firefox profile bindings

This commit is contained in:
2020-09-21 13:59:54 -04:00
parent ef68d2e9c7
commit b622ec0964
11 changed files with 79 additions and 29 deletions

View File

@@ -1,4 +1,4 @@
function maven-test-method
# mvn "-Dtest=$argv[1]#*$argv[2]*" clean test
mvn "-Dtest=$argv[1]#*$argv[2]*" test
mvn "-Dtest=$argv[1]#*$argv[2]*" clean test
# mvn "-Dtest=$argv[1]#*$argv[2]*" test
end

View File

@@ -0,0 +1,3 @@
function mute-video
ffmpeg -i $argv[1] -c copy -an $argv[2]
end

View File

@@ -0,0 +1,11 @@
function watson-add-game
set year_month (date -u +"%Y-%m")
set start_time "$year_month-$argv[2] $argv[3]"
set end_time "$year_month-$argv[4] $argv[5]"
if test (count $argv) -eq 5
watson add -f $start_time -t $end_time fun +$argv[1]
else
watson add -f $start_time -t $end_time fun +$argv[1] +$argv[6]
end
end