Archives for 7.22.11

typing oot fast

Do you ever find that your typing gets a little garbled, your fingers get ahead of your mind and the result is a mess?

One typo I do all the time is “ot” when I mean “to”. I think this happens because I am frequently typing NT and OT for the Testaments. This used to drive me crazy. I hate lifting my hand from the keyboard to fix this with spell-check so I created a Word macro to fix this on the fly.

Here it is:

Sub FixOT()

‘ FixOT Macro
‘ Macro recorded 1/1/99 by Donald C S Johnson

    Selection.MoveLeft Unit:=wdWord, Count:=1
    Selection.MoveRight Unit:=wdCharacter, Count:=1, Extend:=wdExtend
    Selection.Cut
    Selection.MoveRight Unit:=wdCharacter, Count:=1
    Selection.Paste
    Selection.MoveRight Unit:=wdCharacter, Count:=1
End Sub

I have this Macro attached to the keyboard shortcut “Ctrl-Shift-O”. It only works when you are one space past the typo… “ot “ (just before the second quote in the example.

And… I find that my fingers sometimes zip along and type “si” for “is” and “eb” for “be” and “yb” for “by” and any number of other dumb typing errors. My little macro gets used a lot.

If only it could fix all my typos… I still have plenty in the big words too!

It’s something like the way I talk. One of my friends used to say, “My tongue gets tangled around my eye-teeth and I can’t see what I’m saying.”

I don’t know if this of any interest to anyone, but it’s Friday and I have been making these typos a lot this week!

don_sig2