Opening vim while recording with script causes script to go wild (my screen starts filling up with a bunch of crap, some of which says "script", and I also believe it is colored neon green).
Does script set any environment variables that vim can check to stop from opening?
script -c vim,script -c 'vim -u NONE',/usr/bin/script -c 'vim -u NONE'? Can you show a screenshot?scriptsets or modifies environment variables, you can doenv > a; script -qc 'env > b'; diff -u a b. In my case, I get no output meaning the environment is the same inside and outside script.