cargo fmt

pull/48/head
Wilfred Hughes 2021-10-01 09:20:35 +07:00
parent ca3f48ce2e
commit 2acb3b43b5
1 changed files with 5 additions and 1 deletions

@ -1,6 +1,10 @@
//! Apply colours and styling to strings.
use crate::{lines::{codepoint_len, substring_by_codepoint, LineNumber}, positions::SingleLineSpan, syntax::{HighlightKind, MatchKind, MatchedPos}};
use crate::{
lines::{codepoint_len, substring_by_codepoint, LineNumber},
positions::SingleLineSpan,
syntax::{HighlightKind, MatchKind, MatchedPos},
};
use colored::*;
use std::{cmp::min, collections::HashMap};