better name, pos -> abs

This commit is contained in:
ville rantanen
2017-08-09 16:42:24 +03:00
parent 92139abcab
commit 832168d43a

View File

@@ -105,6 +105,6 @@ _qPos() {
[[ "$1" = "linedown" ]] && { printf '\033['${n}'E'; return; }
[[ "$1" = "lineup" ]] && { printf '\033['${n}'F'; return; }
[[ "$1" = "col" ]] && { printf '\033['${n}'G'; return; }
[[ "$1" = "pos" ]] && { printf '\033['${n}';'${x}'H'; return; }
[[ "$1" = "abs" ]] && { printf '\033['${n}';'${x}'H'; return; }
}