Skip to content

Releases: mcchrish/nnn.vim

v2.3

24 May 07:22
065bf84
Compare
Choose a tag to compare

n³ sessions support

v2.2

22 Mar 00:08
6408b85
Compare
Choose a tag to compare
Merge pull request #88 from shwnchpl/master

Improve compatibility with older versions of Vim

v2.1

09 Oct 06:22
12a3766
Compare
Choose a tag to compare

Breaking change: there are no quotes around %:p:h anymore - v1.7 and earlier versions suggested using quotes, but that can trigger a E79: Cannot expand wildcards error.

nnoremap <leader>n :NnnPicker %:p:h<CR>

v2.0

06 Oct 09:21
5646b69
Compare
Choose a tag to compare

Breaking change: there are no quotes around %:p:h anymore - v1.7 and earlier versions suggested using quotes, but that can trigger a E79: Cannot expand wildcards error.

nnoremap <leader>n :NnnPicker %:p:h<CR>

v1.8

06 Oct 08:45
f8bac88
Compare
Choose a tag to compare

Several bug fixes.

v1.7

17 Jun 04:54
37a9736
Compare
Choose a tag to compare

Several bug fixes.

v1.6.1

16 Apr 02:32
527f2b0
Compare
Choose a tag to compare

Fix window stays after selection in neovim

v1.6

31 Mar 07:45
5a5c992
Compare
Choose a tag to compare

Floating window support.

v1.5

05 Feb 02:53
c27ef90
Compare
Choose a tag to compare

Support FuncRef in nnn#action:

function! CopyLinesToRegister(lines)
  let joined_lines = join(a:lines, "\n")
  if len(a:lines) > 1
    let joined_lines .= "\n"
  endif
  echom joined_lines
  let @+ = joined_lines
endfunction

let g:nnn#action = {
    \ '<c-t>': 'tab split',
    \ '<c-x>': 'split',
    \ '<c-v>': 'vsplit',
    \ '<c-o>': function('CopyLinesToRegister') }

Inspired by: junegunn/fzf.vim#580 (comment)

v1.4

22 Jan 01:09
356439e
Compare
Choose a tag to compare

Make split explorer work with nnn#action opening splits.