Releases: mcchrish/nnn.vim
Releases · mcchrish/nnn.vim
v3.6
04 Dec 23:55
Compare
Sorry, something went wrong.
No results found
v3.5
13 Oct 03:58
Compare
Sorry, something went wrong.
No results found
border "none" option
custom hl groups
v3.4.1
29 Sep 23:17
Compare
Sorry, something went wrong.
No results found
v3.4
11 Sep 07:39
Compare
Sorry, something went wrong.
No results found
Remove `Np command
Edit last selected file instead of the first
Include selected directories in actions
v3.3
11 Aug 08:55
Compare
Sorry, something went wrong.
No results found
Deprecate :Np command. Use :NnnPicker instead.
v3.2
30 Jul 09:35
Compare
Sorry, something went wrong.
No results found
Several small improvements.
v3.1
30 Jul 01:56
Compare
Sorry, something went wrong.
No results found
nnn#action allows lambda functions. Thus it can now accept lua functions:
local function copy_to_clipboard (lines )
local joined_lines = table.concat (lines , " \n " )
vim .fn .setreg (" +" , joined_lines )
end
require (" nnn" ).setup ({
action = {
[" <c-t>" ] = " tab split" ,
[" <c-s>" ] = " split" ,
[" <c-v>" ] = " vsplit" ,
[" <c-o>" ] = copy_to_clipboard ,
},
})
v3.0.2
29 Jul 08:38
Compare
Sorry, something went wrong.
No results found
Breaking changes
Default layout is now floating window if version supports it
Floating window requires has('nvim-0.5') || has('popupwin')
v2.5
29 Jul 07:39
Compare
Sorry, something went wrong.
No results found
Merge pull request #105 from lclrc/master
Pass selection tempfile path env to nnn command
v2.4
26 Jul 07:33
Compare
Sorry, something went wrong.
No results found