-
-
Notifications
You must be signed in to change notification settings - Fork 556
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
16 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,27 @@ | ||
// Set of common pub consts. | ||
|
||
/// Fallback row length | ||
pub const FALLBACK_ROW_LEN: usize = 81; | ||
|
||
// Column widths used for console printing. | ||
|
||
/// Language column width | ||
pub const LANGUAGE_COLUMN_WIDTH: usize = 10; | ||
|
||
/// Path column width | ||
pub const PATH_COLUMN_WIDTH: usize = 80; | ||
|
||
/// Files column width | ||
pub const FILES_COLUMN_WIDTH: usize = 8; | ||
|
||
/// Lines column width | ||
pub const LINES_COLUMN_WIDTH: usize = 12; | ||
|
||
/// Code column width | ||
pub const CODE_COLUMN_WIDTH: usize = 12; | ||
|
||
/// Comments column width | ||
pub const COMMENTS_COLUMN_WIDTH: usize = 12; | ||
|
||
/// Blanks column width | ||
pub const BLANKS_COLUMN_WIDTH: usize = 12; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters