Delete autotag.lua

Kevgeon - Brandon [07-11-17 - 03:36]
Delete autotag.lua
Filename
autotag.lua
diff --git a/autotag.lua b/autotag.lua
deleted file mode 100644
index 119d4f4..0000000
--- a/autotag.lua
+++ /dev/null
@@ -1,27 +0,0 @@
-return {
-    name = "Autotag for xml",
-    description = "Auto-enters closing tags for xml",
-    author = "Brandon Wall @Solvaring",
-    version = 0.1,
-    onEditorCharAdded = function(self, editor, event)
-        local tag = editor:GetCurLine()
-        if tag:find('%b<>') then
-            local position = editor:GetCurrentPos()
-            if tag:find('/>') then
-                goto breakout
-            end
-            if tag:find('</') then
-                goto breakout
-            end
-            tag = tag:match('<([%w]+)[%s]*')
-            if string.find(editor:GetCurLine(), '%b<><') then
-                editor:AddText("/"..tag..">")
-                editor:GotoPos(position-1)
-                goto breakout
-            end
-            editor:AddText("</"..tag..">")
-            editor:GotoPos(position)
-            ::breakout::
-        end
-    end
-}
\ No newline at end of file