Accepting request 928921 from utilities
* update to v4.3 * add completions * cool ASCII art logo in the help screen * add bookmarks directory for flexible symlinked bookmarks * new key B to add a symlinked bookmark for current dir * special variables $dN, $fN available for plugins/prompt/shell to access per-context dir/hovered file * config NNN_ORDER to set directory-specific ordering * show/hide hidden files as per context state in plugin based batch rename * retain search filter history for plugin finder * sync multiple instances of nnn after operation on selection * signal CWD change to terminal via OSC-7 (#1147) * save complete per-context filter when saving sessions * disable symlink resolution for paths in NNN_BMS and arg PATH * do not end selection mode on running plugins/prompt/shell * plugin bookmarks replaced by symlinked bookmarks support * list open locations in active contexts in help page * make option O_MATCHFLTR to discard filter key if no match * configurable NNN_TMPFILE to cd on quit * disable auto marking directories (use -) * picker mode improvements open tty for input if STDIN is non-tty truncate output file before writing do not double select a file on Enter * legacy macOS (< 10.12.0) support * no redraw during du calculation, show processed dir name * plugin xdgdefault: add dmenu support * user patch restorepreview: close/restore preview-tui for internal edits OBS-URL: https://build.opensuse.org/request/show/928921 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/nnn?expand=0&rev=28
This commit is contained in:
commit
f6981684d4
32
nnn.changes
32
nnn.changes
@ -1,3 +1,35 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Nov 3 06:10:57 UTC 2021 - Nicolas FORMICHELLA <stigpro@outlook.fr>
|
||||||
|
|
||||||
|
* update to v4.3
|
||||||
|
* add completions
|
||||||
|
* cool ASCII art logo in the help screen
|
||||||
|
* add bookmarks directory for flexible symlinked bookmarks
|
||||||
|
* new key B to add a symlinked bookmark for current dir
|
||||||
|
* special variables $dN, $fN available for plugins/prompt/shell to access per-context dir/hovered file
|
||||||
|
* config NNN_ORDER to set directory-specific ordering
|
||||||
|
* show/hide hidden files as per context state in plugin based batch rename
|
||||||
|
* retain search filter history for plugin finder
|
||||||
|
* sync multiple instances of nnn after operation on selection
|
||||||
|
* signal CWD change to terminal via OSC-7 (#1147)
|
||||||
|
* save complete per-context filter when saving sessions
|
||||||
|
* disable symlink resolution for paths in NNN_BMS and arg PATH
|
||||||
|
* do not end selection mode on running plugins/prompt/shell
|
||||||
|
* plugin bookmarks replaced by symlinked bookmarks support
|
||||||
|
* list open locations in active contexts in help page
|
||||||
|
* make option O_MATCHFLTR to discard filter key if no match
|
||||||
|
* configurable NNN_TMPFILE to cd on quit
|
||||||
|
* disable auto marking directories (use -)
|
||||||
|
* picker mode improvements
|
||||||
|
open tty for input if STDIN is non-tty
|
||||||
|
truncate output file before writing
|
||||||
|
do not double select a file on Enter
|
||||||
|
* legacy macOS (< 10.12.0) support
|
||||||
|
* no redraw during du calculation, show processed dir name
|
||||||
|
* plugin xdgdefault: add dmenu support
|
||||||
|
* user patch restorepreview: close/restore preview-tui for internal edits
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jul 21 19:47:01 UTC 2021 - Dilawar Singh <dilawar.s.rajput@gmail.com>
|
Wed Jul 21 19:47:01 UTC 2021 - Dilawar Singh <dilawar.s.rajput@gmail.com>
|
||||||
|
|
||||||
|
40
nnn.spec
40
nnn.spec
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: nnn
|
Name: nnn
|
||||||
Version: 4.2
|
Version: 4.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Terminal based file browser
|
Summary: Terminal based file browser
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
@ -38,6 +38,31 @@ nnn is a fork of noice, a terminal file browser with keyboard
|
|||||||
shortcuts for navigation, opening files and running tasks. There is
|
shortcuts for navigation, opening files and running tasks. There is
|
||||||
no config file and MIME associations are hard-coded.
|
no config file and MIME associations are hard-coded.
|
||||||
|
|
||||||
|
%package bash-completion
|
||||||
|
Summary: Bash completions for %{name}
|
||||||
|
Requires: bash-completion
|
||||||
|
Supplements: (%{name} and bash-completion)
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description bash-completion
|
||||||
|
The official bash completion script for %{name}.
|
||||||
|
|
||||||
|
%package fish-completion
|
||||||
|
Summary: Fish Completion for %{name}
|
||||||
|
Supplements: (%{name} and fish)
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description fish-completion
|
||||||
|
The official fish completion script for %{name}.
|
||||||
|
|
||||||
|
%package zsh-completion
|
||||||
|
Summary: ZSH Completion for %{name}
|
||||||
|
Supplements: (%{name} and zsh)
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description zsh-completion
|
||||||
|
The official zsh completion script for %{name}.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
@ -48,10 +73,23 @@ export CFLAGS="%{optflags}"
|
|||||||
%install
|
%install
|
||||||
%make_install PREFIX=%{_prefix}
|
%make_install PREFIX=%{_prefix}
|
||||||
|
|
||||||
|
install -Dm0644 misc/auto-completion/fish/nnn.fish $RPM_BUILD_ROOT%{_datadir}/fish/vendor_completions.d/%{name}.fish
|
||||||
|
install -Dm0644 misc/auto-completion/bash/nnn-completion.bash $RPM_BUILD_ROOT%{_datadir}/bash-completion/completions/%{name}
|
||||||
|
install -Dm0644 misc/auto-completion/zsh/_nnn $RPM_BUILD_ROOT%{_datadir}/zsh/site-functions/_%{name}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc README.md CHANGELOG
|
%doc README.md CHANGELOG
|
||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
%{_mandir}/man1/%{name}.1%{?ext_man}
|
%{_mandir}/man1/%{name}.1%{?ext_man}
|
||||||
|
|
||||||
|
%files bash-completion
|
||||||
|
%{_datadir}/bash-completion
|
||||||
|
|
||||||
|
%files fish-completion
|
||||||
|
%{_datadir}/fish
|
||||||
|
|
||||||
|
%files zsh-completion
|
||||||
|
%{_datadir}/zsh/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:5675f9fe53bddfd92681ef88bf6c0fab3ad897f9e74dd6cdff32fe1fa62c687f
|
|
||||||
size 229745
|
|
3
v4.3.tar.gz
Normal file
3
v4.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b6df8e262e5613dd192bac610a6da711306627d56573f1a770a173ef078953bb
|
||||||
|
size 236606
|
Loading…
x
Reference in New Issue
Block a user