Sha256: ea013f4a934701fb935a87f9150881bfc93453f345d5c40ffc38edeb59501a01
Contents?: true
Size: 692 Bytes
Versions: 16
Compression:
Stored size: 692 Bytes
Contents
Feature: Indents Java code correctly Background: Given the indentation rules are like Java's When I open a new edit tab And tabs are soft, 2 spaces Scenario: It should indent else blocks correctly Given the content is: """ if(condition) { // stuff goes here... } <c> """ When I type "e" Then the content should be: """ if(condition) { // stuff goes here... } e<c> """ Scenario: It should expand blocks Given the content is: """ if(condition) {<c>} """ When I insert "\n" at the cursor Then the content should be: """ if(condition) { <c> } """
Version data entries
16 entries across 16 versions & 1 rubygems