http://qs321.pair.com?node_id=333740


in reply to Learn vi/vim in 50 lines and 15 minutes

You forgot:

BEEP MODE

In beep mode, no matter what character you try to press, vim beeps at you. Beginners enter this mode all the time; experts enter it only once every few minutes. Entering beep mode is nearly always unintentional; exiting beep mode is usually just as accidental. If you work in an office, and use vim, you should consider reducing the volume of your machine, or getting a set of headphones so as not to annoy the emacs users nearby.
{grin}

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.

  • Comment on •Re: Learn vi/vim in 50 lines and 15 minutes

Replies are listed 'Best First'.
Re^2: Learn vi/vim in 50 lines and 15 minutes
by allolex (Curate) on Mar 08, 2004 at 14:53 UTC
    #!/bin/sh # beepoff turns off the beep # Console setterm -blength 0 # X xset b off # Optional for Emacs users # find / -name '*emacs*' -exec rm -f {} \;
    /me laughs maniacally. (!!!!!, no less)

    --
    Allolex

      I know this is ancient history, but surely:

      - find / -name '*emacs*' -exec rm -f {} \; + find / -name '*emacs*' -print | perl -nle unlink

      there could be a lot of emacs files on there..

      --
      Simon.