From 3a69385961c872e972470996eff21ba09a2158f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Tue, 26 Mar 2024 14:13:49 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=91=EF=B8=8F=20remove(nvim):=20mapping?= =?UTF-8?q?=20to=20open=20in=20neotree?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit lazyvim now has one by default --- .config/nvim/lua/plugins/extras/lazyvim/neo-tree.lua | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.config/nvim/lua/plugins/extras/lazyvim/neo-tree.lua b/.config/nvim/lua/plugins/extras/lazyvim/neo-tree.lua index bfebf5e0..a71a4241 100644 --- a/.config/nvim/lua/plugins/extras/lazyvim/neo-tree.lua +++ b/.config/nvim/lua/plugins/extras/lazyvim/neo-tree.lua @@ -48,15 +48,6 @@ return { }, filesystem = { hijack_netrw_behavior = "open_default", - window = { - mappings = { - ["O"] = function(state) - local node = state.tree:get_node() - local path = node:get_id() - vim.fn.jobstart({ "xdg-open", path }, { detach = true }) - end, - }, - }, }, }, }