https://github.com/meain/glee
Hoogle, but for every language
https://github.com/meain/glee
Last synced: 23 days ago
JSON representation
Hoogle, but for every language
- Host: GitHub
- URL: https://github.com/meain/glee
- Owner: meain
- Created: 2023-09-06T06:24:00.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-06T06:25:16.000Z (over 1 year ago)
- Last Synced: 2025-02-09T00:13:53.287Z (3 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# glee
> [Hoogle](https://hoogle.haskell.org/) but for every language, using [tree-sitter](https://tree-sitter.github.io/tree-sitter/)
*Currently only supports Golang, but the rest should be here soon.*
### Usage
```
Usage: glee [OPTIONS]
Hoogle like search for functions in all languagesOptions:
-match string
matching algorithm (options: includes, default) (default "default")Example: glee -match includes '(Path, string) -> (Path, error)'
```### Example
```
$ glee -match includes '( Path ) -> ( Path )'pkg/path/drive.go:19:0:ToDrivePath (Path) -> (*DrivePath, error)
transformer/restore_path.go:42:0:basicLocationPath (path.Path, *path.Builder) -> (path.Path, error)
```