Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-05-06 | Update docs | Arun Prakash Jana | |
2020-05-06 | Minor previewer plugin update, docs update | Arun Prakash Jana | |
2020-05-06 | Add a tabbed/xembed based file previewer plugin (#552) | lvgx | |
* Add a tabbed/xembed based file previewer plugin This plugin is written in bash, because job control is not well specified in POSIX sh (`jobs` can return anything). We use `tabbed` [1] as a xembed [2] host, to have a single window owning each previewer window. Uses mpv, sxiv, zathura, and the nuke plugin. [1]: http://tools.suckless.org/tabbed/ [2]: https://specifications.freedesktop.org/xembed-spec/xembed-spec-latest.html * tabbed-preview: prevent focus steal with xdotool * preview-tabbed: tabs->4 spaces * preview-tabbed: add focus prevention timeout | |||
2020-05-05 | Fix double free when starting in list mode | Arun Prakash Jana | |
2020-05-05 | Update docs | Arun Prakash Jana | |
2020-05-05 | Double click only works on same item (#555) | 0xACE | |
This patch disables accidental triggering of double clicking when you are just single clicking on multiple objects fast. | |||
2020-05-05 | SEL_FIRST now displays the correct message (#556) | 0xACE | |
A bit scary when you get prompted to remove a file but you wanted to select a file. I also made sure all strings are correctly ordered. | |||
2020-05-05 | Fix context range check | Arun Prakash Jana | |
2020-05-04 | Update docs | Arun Prakash Jana | |
2020-05-04 | Update docs | Arun Prakash Jana | |
2020-05-04 | Add an option to print hovered files to a FIFO (#548) | lvgx | |
* Add an option to print hovered files to a FIFO This adds an env variable, `NNN_FIFO`, that can be set to a path that `nnn` will open/create as a FIFO, and where every hovered file's path is printed. This allows creating external perview/quick open plugins, ... It can be compiled out with the make variable `O_NOFIFO`. * Check filename ptr instead of full path (for FIFO) * Add documentation to use NNN_FIFO in plugins * Fix path sent to FIFO in empty dirs | |||
2020-05-04 | Use const type | Arun Prakash Jana | |
2020-05-04 | Refactor move_cursor() | Arun Prakash Jana | |
2020-05-04 | Fix #550 | Arun Prakash Jana | |
2020-05-04 | Add is_prefix(), block empty files completely | Arun Prakash Jana | |
2020-05-03 | Bind getplugs to installed version | Arun Prakash Jana | |
2020-05-03 | Plugin finder: run custom find/fd/grep/rg/fzf and list | Arun Prakash Jana | |
2020-05-03 | Context code '+' to create context smartly | Arun Prakash Jana | |
2020-05-03 | Decouple listpath and initpath | Arun Prakash Jana | |
2020-05-03 | Show messages appropriately | Arun Prakash Jana | |
2020-05-03 | Plugin mimelist: support reading file list from (cmd as) plugin | Arun Prakash Jana | |
2020-05-03 | browse: fix nnn -e (#549) | Danh Doan | |
The current code will start editor if the mime doesn't start with "text/". But, we want the opposite. Simplify the check by using `strncmp` instead. We may improve by writing a helper: `start_withs` in the future. This change also cleans -Wstrict-aliasing on Ubuntu 16.04 LTS | |||
2020-05-03 | Simplify unescape() in no locale mode | Arun Prakash Jana | |
2020-05-02 | Dim file details in detail mode | Arun Prakash Jana | |
2020-05-02 | Fix: BSD expr syntax error on empty $NNNLVL (#546) | Rami3L | |
2020-05-02 | Update docs | Arun Prakash Jana | |
2020-05-01 | Update docs | Arun Prakash Jana | |
2020-05-01 | Install logo to desktop icons (#542) | lvgx | |
This shows the "n³" logo as icon in application menus, when desktop file is installed (using `install-desktop` make target). | |||
2020-05-01 | Add a logo for nnn (n³) (#544) | lvgx | |
"n³" on a black knight chess piece/black horse head. | |||
2020-05-01 | Support $_Z_DATA environment variable (#545) | step | |
Support `$_Z_DATA` environment variable per z's documentation https://github.com/rupa/z/blob/dcd5541e7dc37a3a32885565539c6fb1479af26f/z.1#L78. `$_Z_DATA` allows changing the default location of the z database file. | |||
2020-05-01 | Move installation section to Wiki | Arun Prakash Jana | |
2020-05-01 | Update autogen packages | Arun Prakash Jana | |
2020-04-29 | New logo: n³ | Arun Prakash Jana | |
2020-04-27 | Randomize mocp | Arun Prakash Jana | |
2020-04-27 | Use mem* function | Arun Prakash Jana | |
2020-04-27 | Let mocp shuffle | Arun Prakash Jana | |
2020-04-27 | Randomize mocp playlist | Arun Prakash Jana | |
2020-04-27 | Various plugin improvements | Arun Prakash Jana | |
2020-04-26 | Optimize dups (#539) | KlzXS | |
2020-04-26 | Show error at source | Arun Prakash Jana | |
2020-04-26 | Fix #537 | Arun Prakash Jana | |
2020-04-26 | Fix buffer cleanup | Arun Prakash Jana | |
2020-04-26 | Fix buffer cleanup | Arun Prakash Jana | |
2020-04-26 | Use memrchr if available | Arun Prakash Jana | |
2020-04-25 | Resolve path in list mode | Arun Prakash Jana | |
2020-04-25 | Minor refactor | Arun Prakash Jana | |
2020-04-25 | Silently ignore invalid paths (documented) | Arun Prakash Jana | |
2020-04-25 | Fix #532: support picker and list modes together | Arun Prakash Jana | |
2020-04-24 | Fix return and show error | Arun Prakash Jana | |
2020-04-24 | Fix picker and list mode conflict (#533) | KlzXS | |
* Fix picker and list mode conflict * Comment the change |