Whitebeard0

Results 3 comments of Whitebeard0

I have the same problem, for example: ``` snippet ilger "polyglossia -> inline german" i \\textgerman{$1} $0 endsnippet ``` works (manually pressing the tab key) but: ``` snippet ilger "polyglossia...

The problem seems to occur when the snippet trigger is longer than 2 characters. The following example works: ``` snippet ig "description" iA \\textgerman{$1} $0 endsnippet ``` but replacing the...

I managed to fix my problem by making the snippet a regular expression i.e. ``` snippet "ilger" "polyglossia -> inline german" irA \\textgerman{$1} $0 endsnippet ``` but that does not...