Skip to content

Commit

Permalink
remove repeated arguments in control flow
Browse files Browse the repository at this point in the history
  • Loading branch information
arcturus140 authored and rwols committed May 6, 2021
1 parent 7486858 commit ab6ef4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Snippets/foreach.sublime-snippet
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<description>control flow</description>
<content><![CDATA[foreach(${1:item} ${2:items})
$0
endforeach(${1:item})]]></content>
endforeach()]]></content>
<tabTrigger>foreach</tabTrigger>
<scope>source.cmake - meta.function-call.arguments - variable.other.readwrite.cmake - string - comment</scope>
</snippet>
2 changes: 1 addition & 1 deletion Snippets/if.sublime-snippet
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<description>control flow</description>
<content><![CDATA[if(${1:predicate})
$0
endif(${1:predicate})]]></content>
endif()]]></content>
<tabTrigger>if</tabTrigger>
<scope>source.cmake - meta.function-call.arguments - variable.other.readwrite.cmake - string - comment</scope>
</snippet>

0 comments on commit ab6ef4e

Please sign in to comment.