My build of lf
Go to file
2018-04-12 21:54:40 +03:00
etc update documentation 2018-04-06 22:49:50 +03:00
gen add version to the binary 2018-03-22 20:42:15 +03:00
.gitignore add lf.exe to gitignore 2017-07-23 17:15:30 +03:00
.travis.yml use tag for release name 2018-03-22 20:47:32 +03:00
app.go handle command counts efficiently 2018-04-12 18:04:37 +03:00
client.go handle command counts efficiently 2018-04-12 18:04:37 +03:00
comp_test.go cleanup 2016-12-18 21:34:41 +03:00
comp.go add builtin 'draw' command to update efficiently 2018-04-12 21:48:32 +03:00
doc.go add builtin 'draw' command to update efficiently 2018-04-12 21:48:32 +03:00
docstring.go add builtin 'draw' command to update efficiently 2018-04-12 21:48:32 +03:00
eval_test.go add missing arguments to test cases 2018-04-12 21:29:54 +03:00
eval.go add builtin 'draw' command to update efficiently 2018-04-12 21:48:32 +03:00
LICENSE initial commit 2016-08-13 15:49:04 +03:00
main.go add version to the binary 2018-03-22 20:42:15 +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 2017-11-19 21:55:13 +03:00
nav.go add builtin 'select' command to change selection 2018-03-27 20:47:17 +03:00
opts.go handle command counts efficiently 2018-04-12 18:04:37 +03:00
os_windows.go add default file opener and more keybindings 2018-03-02 23:21:52 +03:00
os.go add default file opener and more keybindings 2018-03-02 23:21:52 +03:00
parse.go handle command counts efficiently 2018-04-12 18:04:37 +03:00
README.md add matrix chat link to readme 2017-11-04 19:07:34 +03:00
scan.go add a new shell type displaying the output 2018-03-26 21:22:18 +03:00
server.go cleanup 2018-03-22 17:54:24 +03:00
ui.go replace 'redraw' commands with 'draw' 2018-04-12 21:54:40 +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.

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
  • Configurable with shell commands (sync or async)
  • 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

  • Bookmarks
  • Colorschemes

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.