My build of lf
Go to file
2016-10-02 00:39:03 +03:00
etc fix push with command example 2016-09-20 23:18:39 +03:00
gen escape backticks in documentation 2016-09-15 17:08:05 +03:00
.gitignore initial commit 2016-08-13 15:49:04 +03:00
.travis.yml add termbox to travis configuration 2016-09-01 18:21:05 +03:00
app.go add command counts 2016-09-09 01:03:25 +03:00
client.go load first file on startup 2016-09-18 12:58:32 +03:00
comp_test.go add empty match tests 2016-09-12 23:40:17 +03:00
comp.go add a push command to simulate key pushes 2016-09-18 19:21:24 +03:00
doc.go fix push with command example 2016-09-20 23:18:39 +03:00
docstring.go fix push with command example 2016-09-20 23:18:39 +03:00
eval_test.go add a push command to simulate key pushes 2016-09-18 19:21:24 +03:00
eval.go show message for successful yank/delete 2016-10-02 00:11:45 +03:00
LICENSE initial commit 2016-08-13 15:49:04 +03:00
main.go escape backticks in documentation 2016-09-15 17:08:05 +03:00
misc_test.go add misc tests 2016-08-14 22:56:55 +03:00
misc.go use filepath module instead of path for portability 2016-09-07 00:27:55 +03:00
nav.go clean path before changing directory 2016-10-02 00:39:03 +03:00
opts.go add half-up/half-down/page-up/page-down commands 2016-09-09 00:04:44 +03:00
parse_test.go add missing files 2016-09-12 19:19:47 +03:00
parse.go add parse tests 2016-09-12 19:18:13 +03:00
README.md point to the new documentation in the readme 2016-09-15 02:26:05 +03:00
scan_test.go add parse tests 2016-09-12 19:18:13 +03:00
scan.go cleanup 2016-09-02 23:13:37 +03:00
server.go initial commit 2016-08-13 15:49:04 +03:00
ui.go clean path before changing directory 2016-10-02 00:39:03 +03:00

LF

Google Groups

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

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 ommited since it is better if they are handled by external tools.

multicol-screenshot singlecol-screenshot

Features

  • no external runtime dependencies (except for terminfo database)
  • fast startup and low memory footprint (due to native code and static binaries)
  • server/client architecture to share selection between multiple instances
  • custom commands as shell scripts (hence any other language as well)
  • sync (waiting and skipping) and async commands
  • fully customizable keybindings

Non-Features

  • tabs or windows (handled by the window manager or the terminal multiplexer)
  • built-in pager (handled by your pager of choice)

May-Futures

  • enchanced previews (image, pdf etc.)
  • bookmarks
  • colorschemes
  • periodic refresh
  • progress bar for file yank/delete paste

Installation

See releases for pre-built binaries.

If you like to build from the source:

go get -u github.com/gokcehan/lf

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.