| 244 | } |
| 245 | |
| 246 | SourceFormatterStyle gnuIndentOrig() |
| 247 | { |
| 248 | SourceFormatterStyle result(QStringLiteral("GNU_indent_orig")); |
| 249 | result.setCaption(i18n("Gnu Indent: Original Berkeley indent style")); |
| 250 | result.setContent(QStringLiteral("indent -orig")); |
| 251 | result.setUsePreview(true); |
| 252 | |
| 253 | result.setMimeTypes(ISourceFormatter::mimeTypesSupportedByBuiltInStyles()); |
| 254 | return result; |
| 255 | } |
| 256 | |
| 257 | SourceFormatterStyle clangFormat() |
| 258 | { |
no test coverage detected