Skip to content

Commit

Permalink
🐛 Fix keys with digits missing from completion
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Jul 18, 2022
1 parent defcaca commit bc136a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/visitor/find_args.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"text/template/parse"
)

var fieldRe = regexp.MustCompile(`\.([A-Za-z_.]+)`)
var fieldRe = regexp.MustCompile(`\.([A-Za-z\d_.]+)`)

func NewFindArgs(conf config.Config) FindArgs {
return FindArgs{
Expand Down

0 comments on commit bc136a7

Please sign in to comment.