From 367ebdccb015b7dc8827cc4df8da6a265f5b5dfd Mon Sep 17 00:00:00 2001 From: gwbeip Date: Sat, 12 Apr 2025 21:27:30 +0800 Subject: [PATCH] remove vscode-multi-cursor.lua --- lua/backplugins/vscode-multi-cursor.lua | 11 +++++++++++ lua/vscodeplugins/vscode-multi-cursor.lua | 8 -------- 2 files changed, 11 insertions(+), 8 deletions(-) create mode 100644 lua/backplugins/vscode-multi-cursor.lua delete mode 100644 lua/vscodeplugins/vscode-multi-cursor.lua diff --git a/lua/backplugins/vscode-multi-cursor.lua b/lua/backplugins/vscode-multi-cursor.lua new file mode 100644 index 0000000..c4bef70 --- /dev/null +++ b/lua/backplugins/vscode-multi-cursor.lua @@ -0,0 +1,11 @@ +return { + { + 'vscode-neovim/vscode-multi-cursor.nvim', + event = 'VeryLazy', + cond = not not vim.g.vscode, + opts = {}, + } +} + +-- This plugin is a Neovim extension for the VSCode multi-cursor feature. +-- It is already included in the VSCode Neovim extension, so it is not necessary to install it separately. diff --git a/lua/vscodeplugins/vscode-multi-cursor.lua b/lua/vscodeplugins/vscode-multi-cursor.lua deleted file mode 100644 index 6cc552d..0000000 --- a/lua/vscodeplugins/vscode-multi-cursor.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - { - 'vscode-neovim/vscode-multi-cursor.nvim', - event = 'VeryLazy', - cond = not not vim.g.vscode, - opts = {}, - } -} \ No newline at end of file