I've been trying to use GNU indent to indent some very simple C files, and I wish to use the K&R indentation style but without any use of spaces, purely tabs.
I've tried indent -kr --use-tabs
, and just indent -kr
but they both just use the default K&R with spaces or mix indentation with spaces and tabs.
Is there a way to use K&R with GNU indent while strictly using tabs only? If not, is there a better utility for indentation in this style?