mirror of
https://github.com/junegunn/fzf.git
synced 2025-08-13 19:25:47 -07:00
.github
bin
doc
man
plugin
shell
src
test
.gitignore
.goreleaser.yml
.rubocop.yml
.tool-versions
ADVANCED.md
BUILD.md
CHANGELOG.md
Dockerfile
LICENSE
Makefile
README-VIM.md
README.md
go.mod
go.sum
install
install.ps1
main.go
uninstall
15 lines
246 B
Go
15 lines
246 B
Go
package main
|
|
|
|
import (
|
|
fzf "github.com/junegunn/fzf/src"
|
|
"github.com/junegunn/fzf/src/protector"
|
|
)
|
|
|
|
var version string = "0.38"
|
|
var revision string = "devel"
|
|
|
|
func main() {
|
|
protector.Protect()
|
|
fzf.Run(fzf.ParseOptions(), version, revision)
|
|
}
|