1
0
mirror of https://github.com/gryf/snipmate.vim.git synced 2026-01-03 12:24:15 +01:00

made it so ResetSnippets() resets g:did_ft as well

This commit is contained in:
Michael Sanders
2009-03-24 14:20:52 -04:00
parent 84321bbe17
commit 1e8fe57222
2 changed files with 4 additions and 3 deletions

View File

@@ -104,7 +104,7 @@ fun! ExtractSnipsFile(file)
endf
fun! ResetSnippets()
let s:snippets = {} | let s:multi_snips = {}
let s:snippets = {} | let s:multi_snips = {} | let g:did_ft = {}
endf
fun s:RemoveSnippet()