Archive for the ‘Writing’ Category
3 ways to make the CLI (cmd.exe) more friendly
By default, cmd.exe isn't especially friendly for most tasks, including basic things like copying and pasting text. Displaying long paths while still allowing you to see the commands you're typing is even worse. Here are a few ways you can make the Windows shell less awful to work in.
Quick and easy stuff
First, the point-and-click options. Right click the bar, go down to Properties. Set the colors and font to whatever floats your boat. On the Options tab, and enable QuickEdit and Insert modes; this allows you to left click highlight/copy text, and right click to paste into the CLI window. (There's a reason this isn't enabled by default.)
On the Layout tab, increase the Screen Buffer Size to something more useful. Mine's set to a height of 1000. If you want the CLI window to be larger or smaller, you can do that, too.
Getting fancier
By default, my fingers type ls when I want the contents of a directory. When I'm in bash, I generally have ls aliased to ls -l, which is pretty close to the standard Windows dir command, so I've edited my registry to do this every time cmd.exe is launched (download .reg 258 bytes):
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor]
"AutoRun"="doskey ls=dir"
(You can also do this is HKEY_CURRENT_USER, if you'd prefer this to be a per-user setting.)
If you don't have permission to edit your registry, or don't want to, or would rather come up with a script-y way of doing things, the command is "doskey ls=dir", so you can type this into the CLI whenever you want, or write a script to do this another way. You can also add in other commands, if you find your fingers typing grep instead of findstr, for example.
Icing on the cake
This next piece is, in my opinion, the single most useful thing you can do to make the shell friendlier, aside from enabling Insert and QuickEdit. Using the prompt command, you can alter the appearance of your shell prompt. For example, to get a Unix-like prompt, you can do this:
prompt=$p$_%username%@%computername%:
To get a Terminal.app style prompt, you can do this:
prompt=$p$_[%username%@%computername%]$$$s
As I'm the only user on this machine, and I'm really only interested in my current working directory, I go with a simpler:
prompt=$p$g$_$$$s
which gets me a prompt that looks like this:

Play around with the prompt command until you find a setting that you like. (Type "prompt" with no arguments to go back to the Windows default if you make a mistake.) Once you've found a setting you like, you can make the change permanent by editing your environment variables.
Tap the Windows key, type "environment variables", and select "Edit the System Environment Variables". (You'll need to be logged in as an Administrator.)

Then do the following, entering your prompt options without the equals sign. Click OK and you're finished!

The final results of the above look like this:

Making Word less awful for technical writers
Yesterday Carol Saller, the senior editor of the Chicago Manual of Style, had a post on taming some of Word's infuriating features. There are some good suggestions there, but I thought I would offer another tip which may be helpful for technical writers, and others who work with a lot of non-standard language: turning off spelling and grammar checking on specific user-defined Styles.
(While I'm going to show you a quick and dirty method of solving this problem in an existing document, you may want to follow the same steps to modify your document template(s).)
Most of my technical writing is for the software industry, which means I work with code examples quite a bit. The idea of checking the spelling and grammar of Python code is a little ridiculous. Have a look; it's gross:

It's easy to get rid of all this ugly red and green by quickly defining a new Style. Selecting the code or text that you'd like to change, and then create a new Quick Style:

Give your Style a name–I'm calling mine "Code"–and then click "Modify". You can make whatever changes you like there, then head down to "Format" and click Language:

Tick the "Do not check spelling or grammar" checkbox:

Voila! Happy code example. In the Ribbon, you'll see that the text has been set to the new Code Style:

If you have other text in your document that needs to be changed to this new Style, find some, then on the Home tab on the Ribbon, go all the way over to Editing -> Select -> Select Text with Similar Formatting, and then apply the new Style to all of the selected text in the document.

The result is this:
