Skip to content

Commit 0f8959a

Browse files
authored
Fix error in lsee RegEx to replace ^ with ↑ (#2138)
1 parent 30872f6 commit 0f8959a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/lsee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
export LANG=en_US.UTF-8
1414
tr '\r' '\n' < $1 | \
1515
sed -e 's/_/←/g' \
16-
-e 's/^/↑/g' \
16+
-e 's/\^/↑/g' \
1717
-e 's///g' \
1818
-e 's///g'\
1919
-e 's///g' \

0 commit comments

Comments
 (0)