Skip to content

Commit

Permalink
fix(nvim): make vim-visual-multi not lazy
Browse files Browse the repository at this point in the history
Otherwise <C-n> will insert <CR> on first run, due to default mapping
occuring

see mg979/vim-visual-multi#243
  • Loading branch information
BerkeleyTrue committed Feb 15, 2024
1 parent fa971b3 commit a3b4487
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .config/nvim/fnl/plugins.fnl
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
; motion
{:name :phaazon/hop.nvim :description "easymotion rewrite in lua with better support for neovim." :config (make-on-load hop)}
{:name :kevinhwang91/nvim-hlslens :description "incsearch replacement" :config (make-on-load hlslens)}
{:name :mg979/vim-visual-multi :config (make-on-load multi-cursor) :dependencies [[:kevinhwang91/nvim-hlslens]]}
{:name :mg979/vim-visual-multi :dependencies [[:kevinhwang91/nvim-hlslens]] :lazy false :config (make-on-load multi-cursor)} ; must not be lazy, or <C-n> mapping will insert <CR> (default behavior)
{:name :fedepujol/move.nvim :description "Move lines and blocks" :init (make-init move)}
{:name :wansmer/treesj :description "Plugin for splitting and joining arrays, hashes, and more" :init (make-init treesj) :config (make-on-load treesj) :cmd [:TSJToggle :TSJSplit :TSJJoin]}

Expand Down

0 comments on commit a3b4487

Please sign in to comment.