From 6c2c5dc975059a98ba1403556c3b55673fd9a0bd Mon Sep 17 00:00:00 2001 From: Dmitrii Morozov Date: Wed, 29 Oct 2025 23:26:37 +0100 Subject: Script cleanup, first working version --- lua/intellij_to_vscode/intellij_to_vscode.lua | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 lua/intellij_to_vscode/intellij_to_vscode.lua (limited to 'lua/intellij_to_vscode/intellij_to_vscode.lua') diff --git a/lua/intellij_to_vscode/intellij_to_vscode.lua b/lua/intellij_to_vscode/intellij_to_vscode.lua deleted file mode 100644 index a2bfa78..0000000 --- a/lua/intellij_to_vscode/intellij_to_vscode.lua +++ /dev/null @@ -1,11 +0,0 @@ --- This file makes the plugin load on startup and provide command if not already created -if vim.fn.exists(":ITVConvert") == 0 then - vim.api.nvim_create_user_command("ITVConvert", function() - local ok, err = pcall(function() - require("intellij_to_vscode").convert_all() - end) - if not ok then - vim.notify("ITVConvert failed: " .. tostring(err), vim.log.levels.ERROR) - end - end, {}) -end -- cgit v1.2.3