mirror of
https://github.com/Llewellynvdm/exa.git
synced 2025-04-04 14:41:49 +00:00
fix whitespace
This commit is contained in:
parent
91dcf52972
commit
2bef43fb1b
@ -1,7 +1,7 @@
|
|||||||
#compdef exa
|
#compdef exa
|
||||||
|
|
||||||
# Save this file as _exa in /usr/local/share/zsh/site-functions or in any
|
# Save this file as _exa in /usr/local/share/zsh/site-functions or in any
|
||||||
# other folder in $fpath. E. g. save it in a folder called ~/.zfunc and add a
|
# other folder in $fpath. E.g. save it in a folder called ~/.zfunc and add a
|
||||||
# line containing `fpath=(~/.zfunc $fpath)` somewhere before `compinit` in your
|
# line containing `fpath=(~/.zfunc $fpath)` somewhere before `compinit` in your
|
||||||
# ~/.zshrc.
|
# ~/.zshrc.
|
||||||
|
|
||||||
|
@ -37,8 +37,8 @@ strict() {
|
|||||||
case "$1" in
|
case "$1" in
|
||||||
"on") export EXA_STRICT=1 ;;
|
"on") export EXA_STRICT=1 ;;
|
||||||
"off") export EXA_STRICT= ;;
|
"off") export EXA_STRICT= ;;
|
||||||
"") [ -n "$EXA_STRICT" ] && echo "strict on" || echo "strict off" ;;
|
"") [ -n "$EXA_STRICT" ] && echo "strict on" || echo "strict off" ;;
|
||||||
*) echo "Usage: strict on|off"; return 1 ;;
|
*) echo "Usage: strict on|off"; return 1 ;;
|
||||||
esac;
|
esac;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -158,7 +158,7 @@ impl<'a> Render<'a> {
|
|||||||
.collect::<Vec<_>>();
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
let mut last_working_grid = self.make_grid(1, options, &file_names, rows.clone(), &drender);
|
let mut last_working_grid = self.make_grid(1, options, &file_names, rows.clone(), &drender);
|
||||||
|
|
||||||
if file_names.len() == 1 {
|
if file_names.len() == 1 {
|
||||||
return Some((last_working_grid, 1));
|
return Some((last_working_grid, 1));
|
||||||
}
|
}
|
||||||
@ -176,7 +176,7 @@ impl<'a> Render<'a> {
|
|||||||
if the_grid_fits {
|
if the_grid_fits {
|
||||||
last_working_grid = grid;
|
last_working_grid = grid;
|
||||||
}
|
}
|
||||||
|
|
||||||
if !the_grid_fits || column_count == file_names.len() {
|
if !the_grid_fits || column_count == file_names.len() {
|
||||||
let last_column_count = if the_grid_fits { column_count } else { column_count - 1 };
|
let last_column_count = if the_grid_fits { column_count } else { column_count - 1 };
|
||||||
// If we’ve figured out how many columns can fit in the user’s terminal,
|
// If we’ve figured out how many columns can fit in the user’s terminal,
|
||||||
|
@ -46,7 +46,7 @@ impl f::Size {
|
|||||||
} else {
|
} else {
|
||||||
numerics.format_int(n.round() as isize)
|
numerics.format_int(n.round() as isize)
|
||||||
};
|
};
|
||||||
|
|
||||||
TextCell {
|
TextCell {
|
||||||
// symbol is guaranteed to be ASCII since unit prefixes are hardcoded.
|
// symbol is guaranteed to be ASCII since unit prefixes are hardcoded.
|
||||||
width: DisplayWidth::from(&*number) + symbol.len(),
|
width: DisplayWidth::from(&*number) + symbol.len(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user