Skip to content

Commit 3ea5a63

Browse files
authored
Merge pull request #132 from legendu-net/dev
Merge dev into main
2 parents a800178 + a2bed3a commit 3ea5a63

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cmd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
// Update icon.
1010
func version(cmd *cobra.Command, args []string) {
11-
fmt.Println("0.26.11")
11+
fmt.Println("0.26.12")
1212
}
1313

1414
var versionCmd = &cobra.Command{

utils/data/bash-it/plugins/custom.plugins.bash

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function fzf.cs {
6363
if [[ $# > 0 ]]; then
6464
dir="$@"
6565
fi
66-
cd "$($fd --type d --print0 . $dir | fzf --read0)"
66+
cd "$($fd --type d --print0 --hidden . $dir | fzf --read0)"
6767
ls
6868
}
6969

@@ -91,7 +91,7 @@ function fzf.bat {
9191
if [[ $# > 0 ]]; then
9292
dir="$@"
9393
fi
94-
o="$($fd --type f --print0 . $dir | fzf --read0 --preview 'bat --color=always {}')"
94+
o="$($fd --type f --print0 --hidden . $dir | fzf --read0 --preview 'bat --color=always {}')"
9595
echo $o
9696
nvim $o
9797
}

0 commit comments

Comments
 (0)