1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-08-13 19:25:47 -07:00
Files
.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
fzf/main.go
Junegunn Choi 352ea07226 0.38.0
2023-02-15 23:24:42 +09:00

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)
}