mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-11 15:20:58 +00:00
commit
3e9de0e7e1
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -279,9 +279,9 @@ checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "term_grid"
|
name = "term_grid"
|
||||||
version = "0.1.7"
|
version = "0.2.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "230d3e804faaed5a39b08319efb797783df2fd9671b39b7596490cb486d702cf"
|
checksum = "a7c9eb7705cb3f0fd71d3955b23db6d372142ac139e8c473952c93bf3c3dc4b7"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"unicode-width",
|
"unicode-width",
|
||||||
]
|
]
|
||||||
|
@ -27,7 +27,7 @@ natord = "1.0"
|
|||||||
num_cpus = "1.10"
|
num_cpus = "1.10"
|
||||||
number_prefix = "0.4"
|
number_prefix = "0.4"
|
||||||
scoped_threadpool = "0.1"
|
scoped_threadpool = "0.1"
|
||||||
term_grid = "0.1"
|
term_grid = "0.2.0"
|
||||||
terminal_size = "0.1.16"
|
terminal_size = "0.1.16"
|
||||||
unicode-width = "0.1"
|
unicode-width = "0.1"
|
||||||
users = "0.11"
|
users = "0.11"
|
||||||
|
@ -46,6 +46,7 @@ impl<'a> Render<'a> {
|
|||||||
grid.add(tg::Cell {
|
grid.add(tg::Cell {
|
||||||
contents: filename.strings().to_string(),
|
contents: filename.strings().to_string(),
|
||||||
width: *filename.width(),
|
width: *filename.width(),
|
||||||
|
alignment: tg::Alignment::Left,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -263,6 +263,7 @@ impl<'a> Render<'a> {
|
|||||||
let cell = grid::Cell {
|
let cell = grid::Cell {
|
||||||
contents: ANSIStrings(&column[row].contents).to_string(),
|
contents: ANSIStrings(&column[row].contents).to_string(),
|
||||||
width: *column[row].width,
|
width: *column[row].width,
|
||||||
|
alignment: grid::Alignment::Left,
|
||||||
};
|
};
|
||||||
|
|
||||||
grid.add(cell);
|
grid.add(cell);
|
||||||
@ -276,6 +277,7 @@ impl<'a> Render<'a> {
|
|||||||
let cell = grid::Cell {
|
let cell = grid::Cell {
|
||||||
contents: ANSIStrings(&cell.contents).to_string(),
|
contents: ANSIStrings(&cell.contents).to_string(),
|
||||||
width: *cell.width,
|
width: *cell.width,
|
||||||
|
alignment: grid::Alignment::Left,
|
||||||
};
|
};
|
||||||
|
|
||||||
grid.add(cell);
|
grid.add(cell);
|
||||||
|
Loading…
Reference in New Issue
Block a user