|
428 | 428 | "Begin{}": {
|
429 | 429 | "snippet": "Begin{${1:block inside}}"
|
430 | 430 | },
|
431 |
| - "Begin(){}": { |
432 |
| - "snippet": "Begin(${2:begin comment}){${1:block inside}}" |
433 |
| - }, |
434 | 431 | "tcc{}": {
|
435 | 432 | "snippet": "tcc{${1:comments}}"
|
436 | 433 | },
|
|
452 | 449 | "If{}{}": {
|
453 | 450 | "snippet": "If{${1:condition}}{${2:then block}}"
|
454 | 451 | },
|
455 |
| - "If(){}{}": { |
456 |
| - "snippet": "If(${3:then comment}){${1:condition}}{${2:then block}}" |
457 |
| - }, |
458 | 452 | "uIf{}{}": {
|
459 | 453 | "snippet": "uIf{${1:condition}}{${2:then block without end}}"
|
460 | 454 | },
|
461 |
| - "uIf(){}{}": { |
462 |
| - "snippet": "uIf(${3:then comment}){${1:condition}}{${2:then block without end}}" |
463 |
| - }, |
464 | 455 | "lIf{}{}": {
|
465 | 456 | "snippet": "lIf{${1:condition}}{${2:then line}}"
|
466 | 457 | },
|
467 |
| - "lIf(){}{}": { |
468 |
| - "snippet": "lIf(${3:if comment}){${1:condition}}{${2:then line}}" |
469 |
| - }, |
470 | 458 | "ElseIf{}": {
|
471 | 459 | "snippet": "ElseIf{${1:elseif block}}"
|
472 | 460 | },
|
473 |
| - "ElseIf(){}": { |
474 |
| - "snippet": "ElseIf(${2:elseif comment}){${1:elseif block}}" |
475 |
| - }, |
476 | 461 | "uElseIf{}": {
|
477 | 462 | "snippet": "uElseIf{${1:elseif block without end}}"
|
478 | 463 | },
|
479 |
| - "uElseIf(){}": { |
480 |
| - "snippet": "uElseIf(${2:elseif comment}){${1:elseif block without end}}" |
481 |
| - }, |
482 | 464 | "lElseIf{}": {
|
483 | 465 | "snippet": "lElseIf{${1:elseif line}}"
|
484 | 466 | },
|
485 |
| - "lElseif(){}": { |
486 |
| - "snippet": "lElseif(${2:elseif line}){${1:elseif block}}" |
487 |
| - }, |
488 | 467 | "Else{}": {
|
489 | 468 | "snippet": "Else{${1:else block}}"
|
490 | 469 | },
|
491 |
| - "Else(){}": { |
492 |
| - "snippet": "Else(${2:else comment}){${1:else block}}" |
493 |
| - }, |
494 | 470 | "uElse{}": {
|
495 | 471 | "snippet": "uElse{${1:else block without end}}"
|
496 | 472 | },
|
497 |
| - "uElse(){}": { |
498 |
| - "snippet": "uElse(${2:else block comment}){${1:else block without end}}" |
499 |
| - }, |
500 | 473 | "lElse{}": {
|
501 | 474 | "snippet": "lElse{${1:else line}}"
|
502 | 475 | },
|
503 |
| - "lElse(){}": { |
504 |
| - "snippet": "lElse(${2:else comment}){${1:else line}}" |
505 |
| - }, |
506 | 476 | "eIf{}{}{}": {
|
507 | 477 | "snippet": "eIf{${1:condition}}{${2:then block}}{${3:else block}}"
|
508 | 478 | },
|
509 |
| - "eIf(){}{}(){}": { |
510 |
| - "snippet": "eIf(${4:then comment}){${1:condition}}{${2:then block}}(${5:else comment}){${3:else block}}" |
511 |
| - }, |
512 |
| - "eIf(){}{}{}": { |
513 |
| - "snippet": "eIf(${4:then comment}){${1:condition}}{${2:then block}}{${3:else block}}" |
514 |
| - }, |
515 |
| - "eIf{}{}(){}": { |
516 |
| - "snippet": "eIf{${1:condition}}{${2:then block}}(${4:else comment}){${3:else block}}" |
517 |
| - }, |
518 | 479 | "leIf{}{}{}": {
|
519 | 480 | "snippet": "leIf{${1:condition}}{${2:then line}}{${3:else line}}"
|
520 | 481 | },
|
521 |
| - "leIf(){}{}{}": { |
522 |
| - "snippet": "leIf(${4:comment}){${1:condition}}{${2:then line}}{${3:else line}}" |
523 |
| - }, |
524 |
| - "Switch(){}{}": { |
525 |
| - "snippet": "Switch(${3:switch comment}){${1:condition}}{${2:switch block}}" |
526 |
| - }, |
527 | 482 | "Switch{}{}": {
|
528 | 483 | "snippet": "Switch{${1:condition}}{${2:switch block}}"
|
529 | 484 | },
|
530 | 485 | "Case{}{}": {
|
531 | 486 | "snippet": "Case{${1:case}}{${2:case block}}"
|
532 | 487 | },
|
533 |
| - "Case(){}{}": { |
534 |
| - "snippet": "Case(${3:case comment}){${1:case}}{${2:case block}}" |
535 |
| - }, |
536 | 488 | "uCase{}{}": {
|
537 | 489 | "snippet": "uCase{${1:case}}{${2:case block without end}}"
|
538 | 490 | },
|
539 |
| - "uCase(){}{}": { |
540 |
| - "snippet": "uCase(${3:case comment}){${1:case}}{${2:case block without end}}" |
541 |
| - }, |
542 | 491 | "lCase{}{}": {
|
543 | 492 | "snippet": "lCase{${1:case}}{${2:case line}}"
|
544 | 493 | },
|
545 |
| - "lCase(){}{}": { |
546 |
| - "snippet": "lCase(${3:case comment}){${1:case}}{${2:case line}}" |
547 |
| - }, |
548 | 494 | "Other{}": {
|
549 | 495 | "snippet": "Other{${1:otherwise block}}"
|
550 | 496 | },
|
551 |
| - "Other(){}": { |
552 |
| - "snippet": "Other(${2:other comment}){${1:otherwise block}}" |
553 |
| - }, |
554 | 497 | "uOther{}": {
|
555 | 498 | "snippet": "uOther{${1:otherwise text}}"
|
556 | 499 | },
|
557 |
| - "uOther(){}": { |
558 |
| - "snippet": "uOther(${2:other comment}){${1:otherwise text}}" |
559 |
| - }, |
560 | 500 | "lOther{}": {
|
561 | 501 | "snippet": "lOther{${1:otherwise line}}"
|
562 | 502 | },
|
563 |
| - "lOther(){}": { |
564 |
| - "snippet": "lOther(${2:other comment}){${1:otherwise line}}" |
565 |
| - }, |
566 | 503 | "For{}{}": {
|
567 | 504 | "snippet": "For{${1:condition}}{${2:for block}}"
|
568 | 505 | },
|
569 |
| - "For(){}{}": { |
570 |
| - "snippet": "For(${3:for comment}){${1:condition}}{${2:for block}}" |
571 |
| - }, |
572 | 506 | "lFor{}{}": {
|
573 | 507 | "snippet": "lFor{${1:condition}}{${2:for line}}"
|
574 | 508 | },
|
575 |
| - "lFor(){}{}": { |
576 |
| - "snippet": "lFor(${3:for comment}){${1:condition}}{${2:for line}}" |
577 |
| - }, |
578 | 509 | "While{}{}": {
|
579 | 510 | "snippet": "While{${1:condition}}{${2:while block}}"
|
580 | 511 | },
|
581 |
| - "While(){}{}": { |
582 |
| - "snippet": "While(${3:while comment}){${1:condition}}{${2:while block}}" |
583 |
| - }, |
584 | 512 | "lWhile{}{}": {
|
585 | 513 | "snippet": "lWhile{${1:condition}}{${2:while line}}"
|
586 | 514 | },
|
587 |
| - "lWhile(){}{}": { |
588 |
| - "snippet": "lWhile(${3:while comment}){${1:condition}}{${2:while line}}" |
589 |
| - }, |
590 | 515 | "ForPar{}{}": {
|
591 | 516 | "snippet": "ForPar{${1:condition}}{${2:foreach block}}"
|
592 | 517 | },
|
593 |
| - "ForPar(){}{}": { |
594 |
| - "snippet": "ForPar(${3:foreach comment}){${1:condition}}{${2:foreach block}}" |
595 |
| - }, |
596 | 518 | "ForEach{}{}": {
|
597 | 519 | "snippet": "ForEach{${1:condition}}{${2:foreach block}}"
|
598 | 520 | },
|
599 |
| - "ForEach(){}{}": { |
600 |
| - "snippet": "ForEach(${3:foreach comment}){${1:condition}}{${2:foreach block}}" |
601 |
| - }, |
602 | 521 | "lForEach{}{}": {
|
603 | 522 | "snippet": "lForEach{${1:condition}}{${2:foreach line}}"
|
604 | 523 | },
|
605 |
| - "lForEach(){}{}": { |
606 |
| - "snippet": "lForEach(${3:foreach comment}){${1:condition}}{${2:foreach line}}" |
607 |
| - }, |
608 | 524 | "ForAll{}{}": {
|
609 | 525 | "snippet": "ForAll{${1:condition}}{${2:forall block}}"
|
610 | 526 | },
|
611 |
| - "ForAll(){}{}": { |
612 |
| - "snippet": "ForAll(${3:forall comment}){${1:condition}}{${2:forall block}}" |
613 |
| - }, |
614 | 527 | "lForAll{}{}": {
|
615 | 528 | "snippet": "lForAll{${1:condition}}{${2:forall line}}"
|
616 | 529 | },
|
617 |
| - "lForAll(){}{}": { |
618 |
| - "snippet": "lForAll(${3:forall comment}){${1:condition}}{${2:forall line}}" |
619 |
| - }, |
620 | 530 | "Repeat{}{}": {
|
621 | 531 | "snippet": "Repeat{${1:end condition}}{${2:repeat block}}"
|
622 | 532 | },
|
623 |
| - "Repeat(){}{}()": { |
624 |
| - "snippet": "Repeat(${3:repeat comment}){${1:end condition}}{${2:repeat block}}(${4:until comment})" |
625 |
| - }, |
626 |
| - "Repeat(){}{}": { |
627 |
| - "snippet": "Repeat(${3:repeat comment}){${1:end condition}}{${2:repeat block}}" |
628 |
| - }, |
629 |
| - "Repeat{}{}()": { |
630 |
| - "snippet": "Repeat{${1:end condition}}{${2:repeat block}}(${3:until comment})" |
631 |
| - }, |
632 | 533 | "lRepeat{}{}": {
|
633 | 534 | "snippet": "lRepeat{${1:end condition}}{${2:repeat line}}"
|
634 | 535 | },
|
635 |
| - "lRepeat(){}{}": { |
636 |
| - "snippet": "lRepeat(${3:repeat comment}){${1:end condition}}{${2:repeat line}}" |
637 |
| - }, |
638 | 536 | "SetKwInput{}{}": {
|
639 | 537 | "snippet": "SetKwInput{${1:csname}}{${2:name}}"
|
640 | 538 | },
|
|
0 commit comments