aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2017-04-03Add .travis.ymlGravatar Zhiming Wang
2017-04-03Allow custom CFLAGS and CPPFLAGS in MakefileGravatar Zhiming Wang
This is consistent with the fact that custom LDFLAGS are already allowed, and for once, it makes warning options easier to control. Also use automatic variables $@ and $^ consistently.
2017-04-03Update static associationsGravatar Arun Prakash Jana
2017-04-03Use double quotes to handle file names with spacesGravatar Arun Prakash Jana
Remove dependency on cut.
2017-04-03Add help screen on keybindsGravatar Arun Prakash Jana
2017-04-03Show stat, file, md5, sh256 in file detailsGravatar Arun Prakash Jana
This commit adds dependencies on file, openssl and cut binaries.
2017-04-03Show file detailsGravatar Arun Prakash Jana
We closely follow the output for stat(1).
2017-04-02Remove redundant stuffGravatar Arun Prakash Jana
1. Have a faster copy of strlcpy() 2. Remove redundant legacy files 3. Fix an issue with NULL check on array name
2017-04-02Optimize directory searchGravatar Arun Prakash Jana
2017-04-02Use standard function for numeric sortGravatar Arun Prakash Jana
Numeric is numeric i.e., n, -n. +n. Other forms such as --n, ++n, -c, +c should not be considered numeric. If size is same (e.g. dirs), use alphanum sort.
2017-04-02Revert non-portable optimizationGravatar Arun Prakash Jana
2017-04-02Merge pull request #2 from zmwangx/gitignoreGravatar Arun Prakash Jana
Add .gitignore to ignore compilation products
2017-04-01Add .gitignore to ignore compilation productsGravatar Zhiming Wang
2017-04-02Show message when trying to go above /Gravatar Arun Prakash Jana
2017-04-02Show directories firstGravatar Arun Prakash Jana
2017-04-02Support sort by numeric value for numeric namesGravatar Arun Prakash Jana
2017-04-01Show sort order if appliedGravatar Arun Prakash Jana
2017-04-01An optimized dirname()Gravatar Arun Prakash Jana
2017-04-01OptimizationsGravatar Arun Prakash Jana
2017-04-01Show indicators in columnGravatar Arun Prakash Jana
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