Language.snippets = [
//Conditional
    { input : 'if', output : 'If $0 Then\n\t\nEnd If' },
    { input : 'ifelse', output : 'If $0 Then\n\t\n\nElse\n\t\nEnd If' },
    { input : 'case', output : 'Select Case $0\n\tCase ?\n\tCase Else\nEnd Select'},