summaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2023-05-10 17:18:43 -0400
committerSquibid <me@zacharyscheiman.com>2023-05-10 17:18:43 -0400
commit7dfcfc6a62bd8c4729a6873fdcce50185d5eba4b (patch)
tree2d4fe88a91172008020b7c8ad3e0b471a3343650 /lua
parenta39d8e3433760b4c5f8cdcb336ffe2fb419bcfae (diff)
downloadnvim-7dfcfc6a62bd8c4729a6873fdcce50185d5eba4b.tar.gz
nvim-7dfcfc6a62bd8c4729a6873fdcce50185d5eba4b.tar.bz2
nvim-7dfcfc6a62bd8c4729a6873fdcce50185d5eba4b.zip
remove tab binds
they were already unused (commented out)
Diffstat (limited to '')
-rw-r--r--lua/core/binds.lua8
1 files changed, 0 insertions, 8 deletions
diff --git a/lua/core/binds.lua b/lua/core/binds.lua
index bf04f59..e7be853 100644
--- a/lua/core/binds.lua
+++ b/lua/core/binds.lua
@@ -43,14 +43,6 @@ map('n', '<C-u>', '<C-u>zz')
-- execute order 111
map('n', '<leader>x', '<cmd>!chmod +x %<CR>')
--- tabs
---[[ map('n', '<C-i>', '<cmd>tabnew<CR>')
-map('n', '<C-o>', '<cmd>tabclose<CR>')
-map('n', '<C-u>', '<cmd>tabprevious<CR>')
-map('n', '<C-p>', '<cmd>tabnext<CR>')
-map('n', '<leader>tL', '<cmd>tabmove +1<CR>')
-map('n', '<leader>tH', '<cmd>tabmove -1<CR>') ]]
-
-- add some keybinds to the file view
a.nvim_create_autocmd('FileType', {
pattern = 'netrw',