···112112brew "luarocks"
113113114114# Curses-based tool for viewing and analyzing log files
115115-brew "lnav", args: ["HEAD"]
115115+brew "lnav"
116116117117# Mac App Store command-line interface
118118brew "mas"
+7-2
.config/fish/completions/bazel.fish
···7575 set package (string split ':' -- $target)[1]
7676 set all_targets "$package:all"
77777878- echo $all_targets
7979- __bazel_query "kind('$target_types', $all_targets)"
7878+ set targets (__bazel_query "kind('$target_types', $all_targets)")
7979+ if test (count $targets) -gt 1
8080+ echo $all_targets
8181+ end
8282+ for target in $targets
8383+ echo $target
8484+ end
8085 else
8186 set cur_package (string match --regex '(.*)\/[^\/]*' -- $target)[2]
8287 __bazel_query "kind('$target_types', $cur_package/...:all)"
+1-1
.config/fish/functions/fish_prompt.fish
···1515 set -g __fish_prompt_cwd (set_color cyan)
1616 end
17171818- set -g __fish_git_prompt_color bryellow --italics --background normal
1818+ set -g __fish_git_prompt_color bryellow --background normal --italics
19192020 set color_chars 0
2121