1
0
Fork 0
mirror of https://github.com/Reuh/language-candran.git synced 2025-10-27 12:19:30 +00:00

Merge pull request #13 from Rochet2/patch-1

Fix decrease indent on repeat until loop
This commit is contained in:
Jorge Garrido 2015-04-20 09:51:44 +02:00
commit 55f1baf1dd

View file

@ -2,4 +2,4 @@
'editor': 'editor':
'commentStart': '-- ' 'commentStart': '-- '
'increaseIndentPattern': '\\b(else|elseif|(local\\s+)?function|then|do|repeat)\\b((?!end).)*$|\\{\\s*$' 'increaseIndentPattern': '\\b(else|elseif|(local\\s+)?function|then|do|repeat)\\b((?!end).)*$|\\{\\s*$'
'decreaseIndentPattern': '^\\s*(elseif|else|end,?|\\}\\)?).*$' 'decreaseIndentPattern': '^\\s*(elseif|else|end|until,?|\\}\\)?).*$'