Did Corona Editor delete my existing Lua snippets?

Hey,
 
Just went to create a new module only to discover that my Lua snippets have vanished into thin air! >:|
 
Corona Editor SDK seems the likely suspect, but I was wondering if anyone else had noticed a similar issue? Maybe I’m just an idiot and I deleted them in my sleep or something.
 
Thanks,
 
BTW - they were backed up. Nothing too exciting but I use them fairly regularly:
 

<snippet>

    <content><![CDATA[

local M={}

${1:modulename}=M

${2}

setfenv(1,M)

${3}

return M

]]></content>

    <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->

    <tabTrigger>local M</tabTrigger>

    <!-- Optional: Set a scope to limit where the snippet will trigger -->

    <scope>source.lua</scope>

</snippet>

<snippet>

    <content><![CDATA[

function ${1}:touch(event)

    if event.phase==“began” then

        self.touchId=event.id

    end

    if event.id~=self.touchId then

        return

    end

    if event.phase==“ended” then

        ${2}

    end

end

${3:Runtime}:addEventListener(“touch”,${4})

]]></content>

    <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->

    <tabTrigger>touch</tabTrigger>

    <!-- Optional: Set a scope to limit where the snippet will trigger -->

    <scope>source.lua</scope>

</snippet>

Corona Editor shouldn’t remove anything.  It puts its snippets in Packages/User/Corona Editor/Snippets… where are your snippets saved?

Packages/User/Lua  - it might be that removing another package deleted them. Corona Editor seems like the most likely culprit, but I’ve also removed SublimeLinter, perhaps that did it?

Okay, I’ve upgraded my work computer too, and the problem hasn’t happened. I guess I was just being an idiot :"|

Corona Editor shouldn’t remove anything.  It puts its snippets in Packages/User/Corona Editor/Snippets… where are your snippets saved?

Packages/User/Lua  - it might be that removing another package deleted them. Corona Editor seems like the most likely culprit, but I’ve also removed SublimeLinter, perhaps that did it?

Okay, I’ve upgraded my work computer too, and the problem hasn’t happened. I guess I was just being an idiot :"|