From 9379c6c47191089897d51fac4af334a82fff3501 Mon Sep 17 00:00:00 2001 From: Anton Lydike Date: Tue, 29 Nov 2022 17:11:13 +0000 Subject: [PATCH] fixed a split statement which broke some lines in the list view (fused paths together) --- functions/mnt.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/mnt.fish b/functions/mnt.fish index 45eb6c4..f5c81f6 100644 --- a/functions/mnt.fish +++ b/functions/mnt.fish @@ -93,7 +93,7 @@ function mnt_core_pretty_list_mounts echo -n "[-] " end - set pretty (string split '\t' (mnt_core_pretty_print_line $_flag_full_paths $pretty_print_mode $line)) + set pretty (string split \t (mnt_core_pretty_print_line $_flag_full_paths $pretty_print_mode $line)) if ! set -q _flag_full_paths set pretty[1] (shorten_path $pretty[1])