Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Match do while and while snippet styles
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsawicki committed Oct 17, 2014
1 parent 1fe1318 commit 83b6f18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snippets/language-c.cson
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
'body': 'do {\n\t${0:/* code */}\n} while(${1:/* condition */});'
'While Loop':
'prefix': 'while'
'body': 'while(${1:/* condition */})\n{\n\t${2:/* code */}\n}'
'body': 'while (${1:/* condition */}) {\n\t${2:/* code */}\n}'
'fprintf':
'prefix': 'fprintf'
'body': 'fprintf(${1:stderr}, "${2:%s}\\n", $3);$4'
Expand Down

0 comments on commit 83b6f18

Please sign in to comment.