I have been using Puppy/Quirky Linux which now has BusyBox 1.16.0 and Tiny vi. I am a vim user and it is great to now have a default vi install, but I have found a problem with a set command, outlined below: set ignorecase ok does not set noshowmatch ?? set noignorecase ok does not set noshowmatch ?? set ic !! also sets noshowmatch ?? set noic !! also sets noshowmatch ?? 1049 setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE); 1050 setops(argp, "showmatch ", i, "ic", VI_SHOWMATCH); ??? line 1050 should be ??? 1050 setops(argp, "showmatch ", i, "sm", VI_SHOWMATCH); Bill Muench Santa Cruz, California :wq
Fixed in git, thanks! I personally do not use vi, thanks for reporting bugs in it!