summaryrefslogtreecommitdiff
path: root/.config/nvim
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2022-09-20 00:00:00 +0200
committeryuzu-eva <stevenhu@web.de>2022-09-20 00:00:00 +0200
commitc1f787f83bbcbb6d2d15d3d63b205d26b8e0c940 (patch)
tree816b7af2fa977eb405e8fc61f646c16350328fb6 /.config/nvim
parenta50c0287444734dcdb846b84b24911a59d28ce8e (diff)
removed unused keymap
Diffstat (limited to '.config/nvim')
-rw-r--r--.config/nvim/lua/user/keymaps.lua4
1 files changed, 0 insertions, 4 deletions
diff --git a/.config/nvim/lua/user/keymaps.lua b/.config/nvim/lua/user/keymaps.lua
index 14c4b2c..59c323c 100644
--- a/.config/nvim/lua/user/keymaps.lua
+++ b/.config/nvim/lua/user/keymaps.lua
@@ -14,10 +14,6 @@ keymap('n', '<c-j>', '<c-w>j')
keymap('n', '<c-k>', '<c-w>k')
keymap('n', '<c-l>', '<c-w>l')
--- Insert trailing ; or , from insert mode
-keymap('i', ';;', '<Esc>A;<Esc>')
-keymap('i', ',,', '<Esc>A,<Esc>')
-
-- Open the current file in the default program
keymap('n', '<leader>x', ':!xdg-open %<CR><CR>')