
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.
23 lines
763 B
Modula-2
23 lines
763 B
Modula-2
module github.com/go-delve/delve
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/aquasecurity/libbpfgo v0.1.2-0.20210708203834-4928d36fafac
|
|
github.com/cosiner/argv v0.1.0
|
|
github.com/creack/pty v1.1.9
|
|
github.com/derekparker/trie v0.0.0-20200317170641-1fdf38b7b0e9
|
|
github.com/google/go-dap v0.5.0
|
|
github.com/hashicorp/golang-lru v0.5.4
|
|
github.com/mattn/go-colorable v0.0.9
|
|
github.com/mattn/go-isatty v0.0.3
|
|
github.com/peterh/liner v0.0.0-20170317030525-88609521dc4b
|
|
github.com/sirupsen/logrus v1.6.0
|
|
github.com/spf13/cobra v1.1.3
|
|
go.starlark.net v0.0.0-20200821142938-949cc6f4b097
|
|
golang.org/x/arch v0.0.0-20190927153633-4e8777c89be4
|
|
golang.org/x/sys v0.0.0-20210514084401-e8d321eab015
|
|
golang.org/x/tools v0.0.0-20191127201027-ecd32218bd7f
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|