[EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Use "if 1 | endif " to wrap everything is possible, but not always, since the script may use "finish" to terminate itself and attach some data after the "finish". In the Tiny version the "finish" is not possible, so the script will execute into the data and got thousands of errors.
You can try --------------- ~/.vimrc -------------- if 1 "skipped on tiny vim source ~/.vimrc-full "skipped on tiny finish "skipped on tiny endif source ~/.vimrc-tiny ------------------------------------------- or ----------------- ~/.vimrc ----------------- source ~/.vimrc-tiny if 1 "skipped on tiny source ~/.vimrc-full "skipped on tiny endif "skipped on tiny ------------------------------------------------ Yakov