-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
0 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,3 @@ | ||
# fm | ||
|
||
A tui file manager | ||
|
||
WARNING: a quirk i live with but have not fixed [#4](https://github.com/taybart/fm/issues/4). If anyone else ends up using this I will fix it. | ||
|
||
## Commands | ||
|
||
| cmd | alt cmd | Description | | ||
|-------------|---------|----------------------------------------------------------------------------------------------------------| | ||
| :edit | ee | Open active file with $EDITOR | | ||
| :inspect | i | Open active file with $EDITOR, if editor is vim||nvim. fm will source $CONFIG/vimrc.preview in RO mode | | ||
| :shell | eS | Start $SHELL at current directory | | ||
| :delete | ed | Moves file to temporary location. After fm is closed, the files will be deleted permanently | | ||
| :undo | eu | Put files back where they were and don't delete them at the end of the fm session. | | ||
| :toggleHidden | zh | Flips between hiding and showing hidden files. | | ||
| :rn newname | | Rename active file | | ||
| :!cmd args | s | Run command with $SHELL | | ||
| :yank | yy | Copy file under cursor | | ||
| :cut | dd | Cut file under cursor | | ||
| :paste | pp | Paste file to current directory | | ||
| | / | Open fzf and search through current directory select output or cd to output | | ||
|
||
## Config | ||
|
||
Inital config looks like: | ||
|
||
```json | ||
{ | ||
"columnWidth": -1, | ||
"columnRatios": [2,3,5], | ||
"jumpAmount": 5, | ||
"previewBlacklist": "*.mp4", | ||
"folder": "~/.config/fm" | ||
} | ||
|
||
``` |