My build of nnn with minor changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. __
  2. ___ ___ /\_\ ___ __
  3. /' _ `\ / __`\/\ \ /'___\ /'__`\
  4. /\ \/\ \/\ \L\ \ \ \/\ \__//\ __/
  5. \ \_\ \_\ \____/\ \_\ \____\ \____\
  6. \/_/\/_/\/___/ \/_/\/____/\/____/
  7. -- by lostd and sin
  8. =======================================================
  9. What is it?
  10. ===========
  11. noice is a small ncurses-based file manager.
  12. It was first developed to be used with a tv remote control for a media
  13. center solution.
  14. Getting started
  15. ===============
  16. Get the latest version from the git-repository; build and install it. Run
  17. noice in a directory to display its content in the form of a list, where
  18. each line is a file or directory. The currently selected item will be
  19. preceded with a " > " by default.
  20. Navigation
  21. ----------
  22. You can navigate the list using the following keybinds (hardcoded):
  23. +------+-------+-------+---------------------------------------------------
  24. | k | UP | ^P | go up
  25. | j | DOWN | ^N | go down
  26. | | PGUP | ^U | go up (fast)
  27. | | PGDN | ^D | go down (fast)
  28. | l | RIGHT | ^M | open file / directory (see section "File opening")
  29. | h | LEFT | ^? | navigate up one directory
  30. | / | & | | filter output
  31. | ! | | | spawn shell in current directory
  32. | c | | | chdir into the given path
  33. | q | | | exit program
  34. +------+-------+-------+---------------------------------------------------
  35. File opening
  36. ------------
  37. Depending on the filetype, noice will open the selected file with the
  38. application specified in `config.h` at compilation time. The associations
  39. are specified by regexes, so you might experience issues when trying to
  40. open a file that does not match those regexes.
  41. The default program is `less(1)`. For text files, you can use the 'v'
  42. command in `less(1)` to open the file in your $EDITOR.
  43. Filters
  44. -------
  45. Filters narrow down the view. This effectively allows you to easily
  46. search/jump to a particular file or directory. If you want to reset the
  47. filter then you can just use the match-any regex (i.e. '.'). You can
  48. think of noice being in search mode all the time.
  49. Filters do not stack or nest. They are applied afresh every time.
  50. Contact
  51. =======
  52. You can reach us through the freenode IRC network at #2f30. If you have
  53. any patches, ideas or feedback feel free to join.