summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-08-08 16:12:51 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-08-08 16:12:51 +0200
commit15dff48266b7d1880725b2d7edecded9fe68622f (patch)
tree0b03fd82c3e9db051941c5d776fa6b19e93e0fb7
parentbb6936d7465a9e4edca7c979d9763a9e9ad34e6a (diff)
Disable buffer switching keymap
-rw-r--r--fnl/settings/keymaps.fnl12
1 files changed, 6 insertions, 6 deletions
diff --git a/fnl/settings/keymaps.fnl b/fnl/settings/keymaps.fnl
index fe8a843..f4e3359 100644
--- a/fnl/settings/keymaps.fnl
+++ b/fnl/settings/keymaps.fnl
@@ -31,8 +31,8 @@
(map :n :<C-Right> ":vertical resize +2<CR>" opts)
;; Navigate buffers
-(map :n :<S-l> ":bnext<CR>" opts)
-(map :n :<S-h> ":bprevious<CR>" opts)
+;; (map :n :<tab> ":bnext<CR>" opts)
+;; (map :n :<S-tab> ":bprevious<CR>" opts)
;; Visual ;;
;; Stay in indent mode
@@ -43,12 +43,12 @@
;; Move text up and down
(map :x :J ":move '>+1<CR>gv-gv" opts)
(map :x :K ":move '<-2<CR>gv-gv" opts)
-(map :x :<A-j> ":move '>+1<CR>gv-gv" opts)
-(map :x :<A-k> ":move '<-2<CR>gv-gv" opts)
+(map :x :<m-j> ":move '>+1<CR>gv-gv" opts)
+(map :x :<m-k> ":move '<-2<CR>gv-gv" opts)
;; Move text up and down
-(map :v :<A-j> ":m .+1<CR>==" opts)
-(map :v :<A-k> ":m .-2<CR>==" opts)
+(map :v :<m-j> ":m .+1<CR>==" opts)
+(map :v :<m-k> ":m .-2<CR>==" opts)
(map :v :p "\"_dP" opts)
;; Splits