diff options
Diffstat (limited to 'runtime/tools/vimm')
-rwxr-xr-x | runtime/tools/vimm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/tools/vimm b/runtime/tools/vimm index 042c4a022..7b84cb255 100755 --- a/runtime/tools/vimm +++ b/runtime/tools/vimm @@ -1,6 +1,6 @@ #!/bin/sh # enable DEC locator input model on remote terminal -echo "\033[1;2'z\033[1;3'{\c" +printf "\033[1;2'z\033[1;3'{\c" vim "$@" # disable DEC locator input model on remote terminal -echo "\033[2;4'{\033[0'z\c" +printf "\033[2;4'{\033[0'z\c" |