Difference between revisions of "Developer Tips"
From Dreamwidth Notes
Foxfirefey (Talk | contribs) (Created page with '== Showing Whitespace == Dreamwidth does not want tabs or trailing whitespace, as per the Dev Programming Guidelines. These two tips can help you check out your patch befor...') |
(No difference)
|
Revision as of 07:04, 25 March 2009
Showing Whitespace
Dreamwidth does not want tabs or trailing whitespace, as per the Dev Programming Guidelines. These two tips can help you check out your patch before submission for these flaws.
In vim, you can show whitespace with the command
:set list
You can also use cat -v.