summaryrefslogtreecommitdiff
path: root/lua/intellij_to_vscode/intellij_to_vscode.lua
diff options
context:
space:
mode:
authorDmitrii Morozov <snoopdesigns@gmail.com>2025-10-29 23:26:37 +0100
committerDmitrii Morozov <snoopdesigns@gmail.com>2025-10-29 23:26:37 +0100
commit6c2c5dc975059a98ba1403556c3b55673fd9a0bd (patch)
treed9a0a9b0e87c9498c91ff053bebc7315d0baf8d6 /lua/intellij_to_vscode/intellij_to_vscode.lua
parent1c3d6072b0a75666d3de5ae01ed3710f25877b20 (diff)
Script cleanup, first working versionHEADmaster
Diffstat (limited to 'lua/intellij_to_vscode/intellij_to_vscode.lua')
-rw-r--r--lua/intellij_to_vscode/intellij_to_vscode.lua11
1 files changed, 0 insertions, 11 deletions
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