
This patch implements fuzzy searching for tab completions in the terminal client. Under the hood it is using a trie data structure (https://en.wikipedia.org/wiki/Trie) to perform very fast prefix / fuzzy searches.
13 lines
214 B
TOML
13 lines
214 B
TOML
version = 1
|
|
|
|
test_patterns = ["*_test.go"]
|
|
|
|
exclude_patterns = ["vendor/*"]
|
|
|
|
[[analyzers]]
|
|
name = "go"
|
|
enabled = true
|
|
|
|
[analyzers.meta]
|
|
import_path = "github.com/derekparker/trie"
|
|
dependencies_vendored = true |