• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/workflows/H19-Oct-2021-5541

etc/H19-Oct-2021-452328

gen/H19-Oct-2021-16594

vendor/H03-May-2022-771,441686,491

.gitignoreH A D19-Oct-202129 65

LICENSEH A D19-Oct-20211 KiB2217

README.mdH A D19-Oct-20212.9 KiB7648

app.goH A D19-Oct-202111.4 KiB573479

client.goH A D19-Oct-20212.1 KiB11685

colors.goH A D19-Oct-20216.2 KiB293222

colors_test.goH A D19-Oct-20213.2 KiB8261

complete.goH A D19-Oct-20216.8 KiB415366

complete_test.goH A D19-Oct-20211.3 KiB5648

copy.goH A D19-Oct-20212.6 KiB138115

diacritics.goH A D19-Oct-20211.6 KiB5843

diacritics_test.goH A D19-Oct-20213.9 KiB7357

doc.goH A D19-Oct-202154 KiB1,4061

docstring.goH A D19-Oct-202154.1 KiB1,579888

eval.goH A D19-Oct-202144.5 KiB1,8861,777

eval_test.goH A D19-Oct-202110.3 KiB462397

go.modH A D19-Oct-2021216 118

go.sumH A D19-Oct-20211.7 KiB2019

icons.goH A D19-Oct-20212 KiB130105

lf.1H A D19-Oct-202157 KiB1,5361,534

lf.desktopH A D19-Oct-2021202 109

main.goH A D19-Oct-20215.9 KiB311256

misc.goH A D19-Oct-20214.9 KiB243187

misc_test.goH A D19-Oct-20214.8 KiB221200

nav.goH A D19-Oct-202130.2 KiB1,4581,211

opts.goH A D19-Oct-20217.6 KiB221205

os.goH A D19-Oct-20214 KiB197158

os_windows.goH A D19-Oct-20213.1 KiB158126

parse.goH A D19-Oct-20214.4 KiB298205

scan.goH A D19-Oct-20215.4 KiB323291

server.goH A D19-Oct-20212.4 KiB138123

ui.goH A D19-Oct-202128.4 KiB1,2871,078

README.md

1# LF
2
3[Google Groups](https://groups.google.com/forum/#!forum/lf-fm)
4| [Wiki](https://github.com/gokcehan/lf/wiki)
5| [#lf](https://webchat.freenode.net/?channels=lf) (on Freenode)
6| [#lf:matrix.org](https://matrix.to/#/#lf:matrix.org) (with IRC bridge)
7
8[![Go Report Card](https://goreportcard.com/badge/github.com/gokcehan/lf)](https://goreportcard.com/report/github.com/gokcehan/lf)
9[![Go Reference](https://pkg.go.dev/badge/github.com/gokcehan/lf.svg)](https://pkg.go.dev/github.com/gokcehan/lf)
10
11> This is a work in progress. Use at your own risk.
12
13`lf` (as in "list files") is a terminal file manager written in Go.
14It is heavily inspired by ranger with some missing and extra features.
15Some of the missing features are deliberately omitted since they are better handled by external tools.
16See [faq](https://github.com/gokcehan/lf/wiki/FAQ) for more information and [tutorial](https://github.com/gokcehan/lf/wiki/Tutorial) for a gentle introduction with screencasts.
17
18![multicol-screenshot](http://i.imgur.com/DaTUenu.png)
19![singlecol-screenshot](http://i.imgur.com/p95xzUj.png)
20
21## Features
22
23- Cross-platform (Linux, OSX, BSDs, Windows (partial))
24- Single binary without any runtime dependencies (except for terminfo database)
25- Fast startup and low memory footprint (due to native code and static binaries)
26- Server/client architecture to share file selection between multiple instances
27- Configuration with shell commands
28- Customizable keybindings (vi and readline defaults)
29- Preview filtering (for source highlight, archives, pdfs/images as text etc.)
30
31## Non-Features
32
33- Tabs or windows (handled by window manager or terminal multiplexer)
34- Builtin pager/editor (handled by your pager/editor of choice)
35
36## Installation
37
38See [packages](https://github.com/gokcehan/lf/wiki/Packages) for community maintained packages.
39
40See [releases](https://github.com/gokcehan/lf/releases) for pre-built binaries.
41
42If you like to build from the source on unix:
43
44    env CGO_ENABLED=0 GO111MODULE=on go get -u -ldflags="-s -w" github.com/gokcehan/lf
45
46On windows `cmd`:
47
48    set CGO_ENABLED=0
49    set GO111MODULE=on
50    go get -u -ldflags="-s -w" github.com/gokcehan/lf
51
52On windows `powershell`:
53
54    $env:CGO_ENABLED = '0'
55    $env:GO111MODULE = 'on'
56    go get -u -ldflags="-s -w" github.com/gokcehan/lf
57
58## Usage
59
60After the installation `lf` command should start the application in the current directory.
61
62Run `lf -help` to see command line options.
63
64Run `lf -doc` to see the [documentation](https://pkg.go.dev/github.com/gokcehan/lf).
65
66See [etc](etc) directory to integrate `lf` to your shell or editor.
67An example configuration file can also be found in this directory.
68
69See [integrations](https://github.com/gokcehan/lf/wiki/Integrations) to integrate `lf` to other tools.
70
71See [tips](https://github.com/gokcehan/lf/wiki/Tips) for more examples.
72
73## Contributing
74
75See [contributing](https://github.com/gokcehan/lf/wiki/Contributing) for guidelines.
76