From 4761e3f2a57e5072aa14829ea2aa42404567b1e3 Mon Sep 17 00:00:00 2001 From: kyazdani42 Date: Fri, 14 Feb 2020 14:15:55 +0100 Subject: [PATCH] do not block moving around in the buffer. --- lua/tree.lua | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/lua/tree.lua b/lua/tree.lua index af8f0dcf..9ad2a682 100644 --- a/lua/tree.lua +++ b/lua/tree.lua @@ -216,19 +216,6 @@ local function set_mappings() nowait = true, noremap = true, silent = true }) end - - local maps = { - j = 'j$B', - k = 'k$B', - l = '', - h = '' - } - - for k,v in pairs(maps) do - api.nvim_buf_set_keymap(buf, 'n', k, v, { - nowait = true, noremap = true, silent = true - }) - end end local function toggle()