lf/README.md

57 lines
2.0 KiB
Markdown
Raw Normal View History

2016-08-13 12:49:04 +00:00
# LF
2016-09-04 13:09:09 +00:00
[Google Groups](https://groups.google.com/forum/#!forum/lf-fm)
2016-09-01 15:07:49 +00:00
[![Build Status](https://travis-ci.org/gokcehan/lf.svg?branch=master)](https://travis-ci.org/gokcehan/lf)
2016-09-04 13:32:27 +00:00
[![Join the chat at https://gitter.im/lf-fm/Lobby](https://badges.gitter.im/lf-fm/Lobby.svg)](https://gitter.im/lf-fm/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2016-09-01 15:07:49 +00:00
2016-09-04 13:33:54 +00:00
> This is a work in progress. Use at your own risk.
2016-08-13 12:49:04 +00:00
`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](http://i.imgur.com/DaTUenu.png)
![singlecol-screenshot](http://i.imgur.com/p95xzUj.png)
## 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
2016-09-06 21:57:17 +00:00
See [releases](https://github.com/gokcehan/lf/releases) for pre-built binaries.
2016-08-13 12:49:04 +00:00
2016-09-06 22:47:08 +00:00
If you like to build from the source:
2016-08-13 12:49:04 +00:00
2016-09-06 21:57:17 +00:00
go get -u github.com/gokcehan/lf
2016-08-13 12:49:04 +00:00
## Usage
After the installation `lf` command should start the application in the current directory.
See [tutorial](doc/tutorial.md) for an introduction to the configuration.
See [reference](doc/reference.md) for the list of keys, options and variables with their default values.
See [etc](etc) directory to integrate `lf` to your shell or editor.