tv19.sh - neatvi - [fork] simple vi-type editor with UTF-8 support
 (HTM) git clone git://src.adamsgaard.dk/neatvi
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
       tv19.sh (180B)
       ---
            1 # vi commands
            2 echo    ":e $1"
            3 echo    ":set ai"
            4 echo    "iabc"
            5 echo    ""
            6 echo    "def"
            7 echo    ":wq"
            8 
            9 # the expected output
           10 echo    "        abc" >&2
           11 echo    "" >&2
           12 echo    "        def" >&2