mirror of
https://github.com/peco/peco.git
synced 2026-09-10 07:16:29 -04:00
Remove stray debug statement
This commit is contained in:
parent
fc9f8ad5b4
commit
5816ca2f5c
|
|
@ -12,6 +12,7 @@ import (
|
|||
)
|
||||
|
||||
var currentUser = user.Current
|
||||
|
||||
type Config struct {
|
||||
Keymap Keymap `json:"Keymap"`
|
||||
Matcher string `json:"Matcher"`
|
||||
|
|
@ -131,10 +132,10 @@ func stringsToStyle(raw []string) *Style {
|
|||
}
|
||||
|
||||
var _locateRcfileIn = locateRcfileIn
|
||||
|
||||
func locateRcfileIn(dir string) (string, error) {
|
||||
const basename = "config.json"
|
||||
file := filepath.Join(dir, basename)
|
||||
fmt.Fprintf(os.Stderr, "Looking for %s\n", file)
|
||||
if _, err := os.Stat(file); err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue