This is a great online tool. Thanks.
It would be great if we can do some little bits of configuration. Then I would truly be able to use this, and sing about it everywhere!
For example:
TabSize=4
ReplaceTabBySpaces=TRUE
BlockBracesStartOnSameLine=FALSE
RemoveMultipleBlankLines=TRUE
FormatComments=FALSE
etc...
And once we have configuration, it would be great if we can copy paste our configs in another text box. (No need to save even configs !) That would be truly amazing stuff!
This is a great online tool. Thanks.
It would be great if we can do some little bits of configuration. Then I would truly be able to use this, and sing about it everywhere!
For example:
TabSize=4
ReplaceTabBySpaces=TRUE
BlockBracesStartOnSameLine=FALSE
RemoveMultipleBlankLines=TRUE
FormatComments=FALSE
etc…
And once we have configuration, it would be great if we can copy paste our configs in another text box. (No need to save even configs !) That would be truly amazing stuff!
This is very nice. I noticed that backslash needs to be escaped. This means that you need to do a search and replace in your code before using the tool. I tried using it on some code that had a null as part of a string literal, and it cut off everything after that point, presumably because it interpreted the slash zero as an actual null. I second the configuration idea. Bonus points for making it simple to configure via checkboxes/dropdowns/etc, but providing the actual config text as an easy way to copy/paste the config.
Thanks a lot for this website.
Helped so much.
This is a great online tool. Thanks.
It would be great if we can do some little bits of configuration. Then I would truly be able to use this, and sing about it everywhere!
For example:
TabSize=4
ReplaceTabBySpaces=TRUE
BlockBracesStartOnSameLine=FALSE
RemoveMultipleBlankLines=TRUE
FormatComments=FALSE
etc...
And once we have configuration, it would be great if we can copy paste our configs in another text box. (No need to save even configs !) That would be truly amazing stuff!
hm, i can try to add this
This is very nice. I noticed that backslash needs to be escaped. This means that you need to do a search and replace in your code before using the tool. I tried using it on some code that had a null as part of a string literal, and it cut off everything after that point, presumably because it interpreted the slash zero as an actual null. I second the configuration idea. Bonus points for making it simple to configure via checkboxes/dropdowns/etc, but providing the actual config text as an easy way to copy/paste the config.
This is a great tool. I'll be using it alot.
I found two cases that are giving me problems:
When I enter
*p='';
it gives me:
Raw Result Code
* p = '
Formatted Code
1.* p = '
Raw unformatted Code
*p='';
And when I enter:
*p='\n';
It gives me:
Raw Result Code
* p = 'n'
Formatted Code
1.* p = 'n'
Raw unformatted Code
*p='n';
Just to let you know. Thanks.