1
0
mirror of https://github.com/gryf/snipmate.vim.git synced 2025-12-20 21:08:01 +01:00

fixed bug with special characters in snippet triggers

This commit is contained in:
Michael Sanders
2009-03-22 19:17:42 -04:00
parent b905e94673
commit a3e3958d30

View File

@@ -1,6 +1,6 @@
" File: snipMate.vim
" Author: Michael Sanders
" Version: 0.72
" Version: 0.74
" Description: snipMate.vim implements some of TextMate's snippets features in
" Vim. A snippet is a piece of often-typed text that you can
" insert into your document using a trigger word followed by a "<tab>".
@@ -148,7 +148,7 @@ endf
fun s:GetSnippet(word, scope)
let word = a:word
wh !exists('s:snippet')
if exists('s:snippets["'.a:scope.'"]["'.word.'"]')
if exists('s:snippets["'.a:scope.'"]['''.word.''']')
let s:snippet = s:snippets[a:scope][word]
elseif exists('s:multi_snips["'.a:scope.'"]["'.word.'"]')
let s:snippet = s:ChooseSnippet(a:scope, word)