My build of lf
Go to file
2019-01-18 20:41:17 +03:00
etc add fish completion to etc (#131) 2019-01-17 17:51:32 +03:00
gen cleanup 2018-07-07 17:34:04 +03:00
.gitignore use dep for dependency management 2018-06-26 00:46:50 +03:00
.travis.yml use tag for release name 2018-03-22 20:47:32 +03:00
app.go Revert "only draw ui when the output pauses in shell-pipe" 2018-12-03 15:43:12 +03:00
client.go add 'color256' option to control color mode 2019-01-08 22:47:41 +03:00
colors_test.go add tests for colors 2018-05-06 18:45:31 +03:00
colors.go fix confusion of 8-bit color codes and attributes 2018-05-06 18:45:18 +03:00
complete_test.go rename 'comp' to 'complete' 2018-05-16 00:05:06 +03:00
complete.go add 'color256' option to control color mode 2019-01-08 22:47:41 +03:00
doc.go add search and find to the documentation 2019-01-18 20:41:17 +03:00
docstring.go add search and find to the documentation 2019-01-18 20:41:17 +03:00
eval_test.go add missing arguments to test cases 2018-04-12 21:29:54 +03:00
eval.go add 'color256' option to control color mode 2019-01-08 22:47:41 +03:00
Gopkg.lock use dep for dependency management 2018-06-26 00:46:50 +03:00
Gopkg.toml use dep for dependency management 2018-06-26 00:46:50 +03:00
lf.1 add search and find to the documentation 2019-01-18 20:41:17 +03:00
LICENSE initial commit 2016-08-13 15:49:04 +03:00
main.go detach server on windows 2018-08-01 00:21:55 +03:00
misc_test.go add a 'B' suffix to files under a thousand bytes 2017-01-08 19:24:28 +03:00
misc.go cleanup 2018-05-20 20:30:41 +03:00
nav.go added ':delete' builtin command (#121) 2018-12-29 20:14:20 +03:00
opts.go add 'color256' option to control color mode 2019-01-08 22:47:41 +03:00
os_windows.go detach server on windows 2018-08-01 00:21:55 +03:00
os.go check HOME and USER variables on startup 2018-08-27 19:38:08 +03:00
parse.go cleanup 2018-05-20 20:30:41 +03:00
README.md remove notice from readme 2018-10-30 21:47:45 +03:00
removediacritics_test.go add ignoredia and smartdia option for search and find without diacritics (#118) 2018-12-03 15:41:53 +03:00
removediacritics.go add ignoredia and smartdia option for search and find without diacritics (#118) 2018-12-03 15:41:53 +03:00
scan.go add a new shell type displaying the output 2018-03-26 21:22:18 +03:00
server.go add 'quit' command to server protocol 2018-07-22 20:44:56 +03:00
ui.go add 'color256' option to control color mode 2019-01-08 22:47:41 +03:00

LF

Google Groups | Wiki | #lf (on Freenode) | #lf:matrix.org (with IRC bridge)

Build Status Go Report Card GoDoc Join the chat at https://gitter.im/lf-fm/Lobby

This is a work in progress. Use at your own risk.

lf (as in "list files") is a terminal file manager written in Go. It is heavily inspired by ranger with some missing and extra features. Some of the missing features are deliberately omitted since they are better handled by external tools. See faq for more information and tutorial for a gentle introduction with screencasts.

multicol-screenshot singlecol-screenshot

Features

  • Cross-platform (Linux, OSX, BSDs, Windows (partial))
  • Single binary without any runtime dependencies (except for terminfo database)
  • Fast startup and low memory footprint (due to native code and static binaries)
  • Server/client architecture to share file selection between multiple instances
  • Configuration with shell commands
  • Customizable keybindings (vi and readline defaults)
  • Preview filtering (for source highlight, archives, pdfs/images as text etc.)

Non-Features

  • Tabs or windows (handled by window manager or terminal multiplexer)
  • Builtin pager/editor (handled by your pager/editor of choice)
  • Image previews (cool but no standard available)

May-Futures

  • Mouse control

Installation

See releases for pre-built binaries.

If you like to build from the source:

go get -u github.com/gokcehan/lf

See packages for community maintained packages.

Usage

After the installation lf command should start the application in the current directory.

Run lf -help to see command line options.

Run lf -doc to see the documentation.

See etc directory to integrate lf to your shell or editor. An example configuration file can also be found in this directory.

See integrations to integrate lf to other tools.

See tips for more examples.

Contributing

See contributing for guidelines.