kakoune: fix for busybox awk: use middle dot unicode character instead of unicode escape for nbsp

This commit is contained in:
2026-07-17 10:29:21 +02:00
parent 7c91379f6c
commit 2d79c5728a
4 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
for (i = 3; i < NF; ++i) {
if ($i ~ /^[0-9]+$/) {
j = match($0, "[ ]+" $(i-1) "[ ]+" $i " ")
print substr($0, 0, j - 1) "\u00a0" $(i-1) "\u00a0" $i "\u00a0" $(i+1)
print substr($0, 0, j - 1) "·" $(i-1) "·" $i "·" $(i+1)
break
}
}