Arun Prakash Jana
79cbc40a7f
Change archive list shortcut to 'F'
7 лет назад
Arun Prakash Jana
6bfbff9519
Revert "Archive handling on OS X using unar+lsar"
This reverts commit 1e859eb137
.
We will use atool on OS X as well, it can be brewed easily.
7 лет назад
Arun Prakash Jana
71d27de517
Support archive listing and extraction
7 лет назад
Arun Prakash Jana
28f69e59fa
Support file and dir create
7 лет назад
Arun Prakash Jana
277cf66097
Move config.h to nnn.h
7 лет назад
Arun Prakash Jana
e2fae851c3
Use 'pin' dir instead of 'mark' dir
7 лет назад
Arun Prakash Jana
2e33c577b1
Undocumented keys: F2, F5
7 лет назад
Arun Prakash Jana
f53f1b86e0
Remove shortcut F2 for refresh.
F2 is not very portable e.g., doesn't work over putty (default settings).
7 лет назад
Arun Prakash Jana
0b3bec329f
Support in-place file rename
7 лет назад
Arun Prakash Jana
3d89b3f945
Support mark a directory
In certain workflows you know you would have revisit a directory. Mark it!
7 лет назад
Arun Prakash Jana
9a4c446760
Retire config.def.h, unify Makefiles
7 лет назад
Arun Prakash Jana
be8e9d5213
Re-format help
7 лет назад
Arun Prakash Jana
2b963634bc
Add option -e to use exiftool
7 лет назад
Arun Prakash Jana
908965b6f5
Support F2 to refresh
7 лет назад
Arun Prakash Jana
303f36aed0
Show total files in du mode
7 лет назад
Arun Prakash Jana
2b248e4e1a
Re-structure header
7 лет назад
Arun Prakash Jana
6d20178881
Fix reasonable checkpatch reports
7 лет назад
Arun Prakash Jana
8c6ab7df02
Support bookmarks
7 лет назад
Arun Prakash Jana
889500b057
Set detail view mode as default, introduce light mode
7 лет назад
Arun Prakash Jana
fe775ccf1f
desktop opener - xdg-open on Linux and open(1) on OS X
7 лет назад
Arun Prakash Jana
b0efe4c642
Disable key to run top
7 лет назад
Arun Prakash Jana
8d6ceb00a7
Use vlock as locker, add ^Q to quit
^Q would quit even from filter mode
7 лет назад
Arun Prakash Jana
c42df81ae5
Insert key for navigate-as-you-type mode
7 лет назад
Arun Prakash Jana
88e9df01a4
Navigate-as-you-type support
1. Open directories in filter mode
2. Fix arrow keys not working after filter selection (due to invalid cur entry)
3. Support `Insert` key to clear filter prompt
4. Update documentation
7 лет назад
Arun Prakash Jana
71bc3c7432
Fix #27 : use catfish as default search utility
7 лет назад
Arun Prakash Jana
3096dfefde
Polish change directory logic
1. Strip end spaces and slashes
2. Do NOT change dir if in the same dir
3. Don't go back beyond startup dir with '-'
4. Reset oldpath on cd (other than cd . and ..)
5. Reset filter
6. Update features in README
7 лет назад
Arun Prakash Jana
b4166192e6
Support jump to initial directory
This change remaps the & key. However, / is more relevant for filter and & makes more sense wrt. address.
7 лет назад
Arun Prakash Jana
00aaee9ff1
nlay - a highly customizable file handler
7 лет назад
Arun Prakash Jana
07d4252b63
Show media information using mediainfo
7 лет назад
Arun Prakash Jana
01c1ef6e58
Support cd on quit
7 лет назад
Arun Prakash Jana
9702abdd81
Support open current dir in desktop file manager
7 лет назад
Arun Prakash Jana
cbefcfd67b
Initial path: support sort by disk usage
7 лет назад
Arun Prakash Jana
e54ed037bd
Key - to jump to last visited directory
7 лет назад
Arun Prakash Jana
b7e4968a48
Resolve ~ (HOME) at chdir prompt
7 лет назад
Arun Prakash Jana
07c59cfd62
vim-ish binding for jump to first and last entry
It was troubling me. Mimicking 'gg' would have been hacky and would need
additional processing... 'g' was free. Who cares even if you press twice? ;)
7 лет назад
Arun Prakash Jana
754ea4d3ef
Update static associations
7 лет назад
Arun Prakash Jana
4b66029762
Add help screen on keybinds
7 лет назад
Arun Prakash Jana
f466ba543c
Show file details
We closely follow the output for stat(1).
7 лет назад
Arun Prakash Jana
7be7a6d215
Optimizations
7 лет назад
Arun Prakash Jana
8bbb752a79
Open audio files with mpv
7 лет назад
Arun Prakash Jana
584a5f90f3
Remove sh as script opener, use vi
7 лет назад
Arun Prakash Jana
aeeeed0bce
Change vim to vi
7 лет назад
Arun Prakash Jana
c42790aa18
Support file name copier
Add keybind 'Ctrl-k' to copy the absolute path of the file under the cursor if environment variable NOICE_COPIER is set.
7 лет назад
Arun Prakash Jana
4bf17cb7bc
Switches to toggle detail view, file size sort
1. The detailed view shows file type and size using keybind 'd'. Disabled by default.
2. Option 's' sorts dir entries by descending order of size.
7 лет назад
sin
dd29e81df5
Make toggle dot behaviour persistent
Once set, the default filter is updated. This means that
toggle dot will also work as expected when noice is executed
as root.
Based on discussion with Ypnose.
8 лет назад
sin
bd79c29d8b
Align fields in config.def.h
Diff by Ypnose
8 лет назад
Arun Prakash Jana
2958ecd040
Remove libmagic, use file command.
The magic.mgc file gets created in the local directory, opening
the global file throws unwanted messages. So we are using the o/p
of the file command to determine if the file is a plain text file.
8 лет назад
Arun Prakash Jana
bc731cd9c0
Modify file type handling.
Use mpv, fmedia, zathura.
Invoke libmagic to identify text files and open with vim.
Use xdg-open for unhandled mimes.
8 лет назад
sin
829bcdd7d4
Add command to cd back to HOME
Original patch written by Richard Hyde and taken from
https://github.com/RichardHyde/noice
9 лет назад
sin
e1c26079b1
Add command to toggle hide .dot files
Patch written by Richard Hyde and taken from
https://github.com/RichardHyde/noice
9 лет назад