aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2017-04-01Support opening in detail view modeGravatar Arun Prakash Jana
2017-04-01Open audio files with mpvGravatar Arun Prakash Jana
2017-04-01Remove sh as script opener, use viGravatar Arun Prakash Jana
2017-03-31Change vim to viGravatar Arun Prakash Jana
2017-03-31Revamp detail modeGravatar Arun Prakash Jana
If a filename has Unicode chars, the alignment is broken. Hence moving name to the last column. This also makes the view compact. Moving block and char dev indicators in the space for size.
2017-03-31Show indicator with filename in barGravatar Arun Prakash Jana
2017-03-31Update documentation (man, README)Gravatar Arun Prakash Jana
2017-03-31Fix: can't go to parent if only dir name specifiedGravatar Arun Prakash Jana
Invoking nnn with: nnn dir nnn ./dir nnn dir wouldn't allow user to navigate to parent directory.
2017-03-30Rename project to nnn (Noice is Not Noice)Gravatar Arun Prakash Jana
2017-03-30Support file name copierGravatar Arun Prakash Jana
Add keybind 'Ctrl-k' to copy the absolute path of the file under the cursor if environment variable NOICE_COPIER is set.
2017-03-30Re-format detailed view, show filenameGravatar Arun Prakash Jana
2017-03-30Use reverse video in detail viewGravatar Arun Prakash Jana
1. Highlight the currently selected item in reverse video. 2. Fix: remember the current item when toggling detail view.
2017-03-30Show modification time in detail viewGravatar Arun Prakash Jana
2017-03-30Show number of entries in detailed viewGravatar Arun Prakash Jana
2017-03-30strip binaryGravatar Arun Prakash Jana
2017-03-30Simpler regular listingGravatar Arun Prakash Jana
2017-03-30Shows 'Cannot resolve path' on narrow terminalGravatar Arun Prakash Jana
noice truncates the cwd string dynamically. If the numbers of columns is lesser than the length of the path, cwd is truncated so that the correct path cannot be resolved. We should try to resolve the full path instead.
2017-03-30Concise file type info in detail viewGravatar Arun Prakash Jana
B - Block Device C - Character Device D - Directory E - Executable F - Fifo L - Symbolic Link R - Regular File S - Socket
2017-03-30Switches to toggle detail view, file size sortGravatar Arun Prakash Jana
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.
2017-03-29Re-scan directory contents after spawning a shellGravatar Arun Prakash Jana
The contents of the directory may be changed from the shell by adding or deleting content. Permissions may have changed too. We must re-populate the contents of the current directory.
2017-03-29Various optimizationsGravatar Arun Prakash Jana
2017-03-29Implement navigation roll overGravatar Arun Prakash Jana
2017-03-29Update readmeGravatar Arun Prakash Jana
2016-10-05Merge remote-tracking branch 'upstream/master'Gravatar Arun Prakash Jana
2016-08-24Bump to 0.6Gravatar sin
2016-08-22Split out default filter initializationGravatar sin
2016-08-22Make toggle dot behaviour persistentGravatar sin
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.
2016-08-22Align fields in config.def.hGravatar sin
Diff by Ypnose
2016-08-22Accept user-defined LDFLAGS in MakefileGravatar sin
Diff by Ypnose
2016-08-21Update README.mdGravatar Arun Prakash Jana
2016-08-21Update README.mdGravatar Arun Prakash Jana
2016-08-21Update README.mdGravatar Arun Prakash Jana
2016-08-21Update README.mdGravatar Arun Prakash Jana
2016-08-21Update README.mdGravatar Arun Prakash Jana
2016-08-21Update README.mdGravatar Arun Prakash Jana
2016-08-21Update readme.Gravatar Arun Prakash Jana
2016-08-21List alphabetically, case ignored (like 'ls -l').Gravatar Arun Prakash Jana
2016-08-21Update README.mdGravatar Arun Prakash Jana
2016-08-21Document NOICE_FALLBAK_OPENER.Gravatar Arun Prakash Jana
2016-08-21Support NOICE_FALLBAK_OPENER.Gravatar Arun Prakash Jana
2016-08-21Update README.mdGravatar Arun Prakash Jana
2016-08-21Doc update on NOICE_OPENER.Gravatar Arun Prakash Jana
2016-08-21Support NOICE_OPENER env variable.Gravatar Arun Prakash Jana
2016-08-21Update README.mdGravatar Arun Prakash Jana
2016-08-21Update man page.Gravatar Arun Prakash Jana
2016-08-21Update README.Gravatar Arun Prakash Jana
2016-08-21Remove libmagic, use file command.Gravatar Arun Prakash Jana
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.
2016-08-20Update READMEGravatar Arun Prakash Jana
2016-08-20Remove config.h on clean.Gravatar Arun Prakash Jana
2016-08-20Fix compilation issues with -O3 optimization.Gravatar Arun Prakash Jana