We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdf025f commit eea4849Copy full SHA for eea4849
config/common/.config/fish/conf.d/abbr.fish
@@ -16,7 +16,6 @@ alias o open
16
alias oo "open ."
17
alias t 'mkdir -p /tmp/scratch; and cd (mktemp --directory --tmpdir=/tmp/scratch (string split "/" $PWD --right --max=1 --fields=2).XXXXX)'
18
alias tf terraform
19
-alias k kubectl
20
21
# abbreviations
22
abbr -a -g cdd "cd .."
config/common/.config/fish/functions/k.fish
@@ -0,0 +1,7 @@
1
+function k
2
+ if test (count $argv) -eq 0
3
+ kubectl get pod
4
+ else
5
+ kubectl $argv
6
+ end
7
+end
0 commit comments