do not block moving around in the buffer.

This commit is contained in:
kyazdani42 2020-02-14 14:15:55 +01:00
parent 3e04580e74
commit 4761e3f2a5

View File

@ -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()