Skip to content
/ fzu Public
forked from jhawthorn/fzy

A fork of fzy with configurable keybindings and multi-file selection.

License

Notifications You must be signed in to change notification settings

insidewhy/fzu

 
 

Repository files navigation

fzu is a fork of fzu with configurable keybindings and support for selecting multiple files.

See fzy.

Configuration

fzu loads configuration from ~/.config/fzu when it is available. This example configuration file shows the default key bindings:

key-bindings = {
	up        = "prev"
	c-k       = "prev"
	c-p       = "prev"
	down      = "next"
	c-j       = "next"
	c-n       = "next"
	c-c       = "exit"
	c-d       = "exit"
	delete    = "del char"
	c-h       = "del char"
	c-w       = "del word"
	c-u       = "del all"
	c-m       = "emit"
	tab       = "autocomplete"
	page-up   = "page up"
	page-down = "page down"
}

To allow selecting every visible option with ctrl+e the following configuration could be used:

key-bindings = {
	c-e = "emit all"
}

About

A fork of fzy with configurable keybindings and multi-file selection.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 75.4%
  • Ruby 16.5%
  • Roff 3.0%
  • Shell 2.7%
  • Makefile 2.4%