d879e8f8f8
cc #712 |
||
---|---|---|
.github/workflows | ||
etc | ||
gen | ||
.gitignore | ||
app.go | ||
client.go | ||
colors_test.go | ||
colors.go | ||
complete_test.go | ||
complete.go | ||
copy.go | ||
diacritics_test.go | ||
diacritics.go | ||
doc.go | ||
docstring.go | ||
eval_test.go | ||
eval.go | ||
go.mod | ||
go.sum | ||
icons.go | ||
lf.1 | ||
lf.desktop | ||
LICENSE | ||
main.go | ||
misc_test.go | ||
misc.go | ||
nav.go | ||
opts.go | ||
os_windows.go | ||
os.go | ||
parse.go | ||
README.md | ||
scan.go | ||
server.go | ||
ui.go |
LF
Google Groups | Wiki | #lf (on Libera.Chat) | #lf:matrix.org
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.
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)
Installation
See packages for community maintained packages.
See releases for pre-built binaries.
If you like to build from the source on unix:
# For go version < 1.17
env CGO_ENABLED=0 GO111MODULE=on go get -u -ldflags="-s -w" github.com/gokcehan/lf
# For go version >= 1.17
env CGO_ENABLED=0 go install -ldflags="-s -w" github.com/gokcehan/lf@latest
On windows cmd
:
REM For go version < 1.17
set CGO_ENABLED=0
set GO111MODULE=on
go get -u -ldflags="-s -w" github.com/gokcehan/lf
REM For go version >= 1.17
set CGO_ENABLED=0
go install -ldflags="-s -w" github.com/gokcehan/lf@latest
On windows powershell
:
# For go version < 1.17
$env:CGO_ENABLED = '0'
$env:GO111MODULE = 'on'
go get -u -ldflags="-s -w" github.com/gokcehan/lf
# For go version >= 1.17
$env:CGO_ENABLED = '0'
go install -ldflags="-s -w" github.com/gokcehan/lf@latest
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.