Skip to content

Releases: mcchrish/nnn.vim

v3.6

04 Dec 23:55
v3.6
32d106a
Compare
Choose a tag to compare

Explorer mode

v3.5

13 Oct 03:58
v3.5
2661052
Compare
Choose a tag to compare
  • border "none" option
  • custom hl groups

v3.4.1

29 Sep 23:17
v3.4.1
93680e5
Compare
Choose a tag to compare
v3.4.1

v3.4

11 Sep 07:39
v3.4
07c3ccd
Compare
Choose a tag to compare
  • Remove `Np command
  • Edit last selected file instead of the first
  • Include selected directories in actions

v3.3

11 Aug 08:55
40ea24a
Compare
Choose a tag to compare

Deprecate :Np command. Use :NnnPicker instead.

v3.2

30 Jul 09:35
ed06cc9
Compare
Choose a tag to compare

Several small improvements.

v3.1

30 Jul 01:56
d37eb7a
Compare
Choose a tag to compare

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
6050d92
Compare
Choose a tag to compare

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
523edb4
Compare
Choose a tag to compare
Merge pull request #105 from lclrc/master

Pass selection tempfile path env to nnn command

v2.4

26 Jul 07:33
abf7001
Compare
Choose a tag to compare

Tag before v3