by Peter Ridge
Last night, I updated to Firefox 6.0.2 and after it was finished installing, lo and behold the middle mouse button no longer opened links in new tabs. Using a middle click (Command+click on the Mac) on a link normally opens the destination in a background tab, but it just stopped working. However, I could still use the context menu (right-click on PC, Control+click on Mac) and select “Open Link in New Tab”.
Check your extensions. Are you using Greasemonkey 0.9.10? Are you also using Tab Mix Plus 0.3.8.6? As of this writing, they’re both the latest versions at the Firefox add-ons site. Nevertheless, there’s an incompatibility that causes the middle-click to fail.
To remedy the problem, download and install the latest version of Greasemonkey 0.9.11 directly at https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/versions/0.9.11 or if you’d rather wait for Mozilla to approve the version, it should eventually show up as an update in Firefox.
Post a comment
Related posts:
by Peter Ridge
When using PuTTY to SSH to a Linux server and edit files, I’ve encountered on several occasions where navigating in vim using the cursor (arrow) keys on the keyboard while in insert mode results in control characters and/or new lines being inserted. Here are a couple of ways to rectify the situation.
- Check if the vim command is pointing to the full version of vim or vim tiny.
$ which vim
Some Linux distros link vim to vim tiny. If it’s pointing to the normal vim, skip to step 4, below.
- If you’re using vim tiny and want to continue to do so, then edit /etc/vim/vimrc.tiny and add the command set nocompatible to turn off compatibility mode.
- If you’d rather have the normal vim editor, then install it. After installation, confirm that the vim command points to the correct version and continue with step 4, below.
- Check that /etc/vim/vimrc (or ~/.vimrc) contains the command, set no compatible, to turn off compatibility mode.
That should do it. If you still have trouble, be sure that your terminal is set correctly in PuTTY and on the remote system.
Have another way to fix this issue? Post it in the comments.
Post a comment
by Peter Ridge
If you’re using custom menus in WordPress, you may have run into a time when you wanted a menu item to open in a new window or tab instead of the current one. In recent versions of WordPress, various options in the admin screens are hidden in a panel called Screen Options. The target of a menu link is just such a hidden option. To turn it, and some others, on do the following:
- Click on Menus in the Appearance section.
- Near the top-right of the Menus page, click on Screen Options and check the box labelled Link Target under the Show advanced menu properties heading as shown below.

Screen Options panel for Menus
After enabling the option, the options available for each type of menu item will now contain a drop down list called Link Target where you can select whether the menu opens in the current window/tab or a new one.

Link Target option is now available for all menu items
The Screen Options panel has additional options that can be enabled. Explore the Screen Options panel in other areas of the WordPress admin interface for more hidden capabilities.
Post a comment
by Peter Ridge
After upgrading the Samsung Epic 4G (SPH-D700) to Android 2.2 Froyo, did you find that all your synced Android calendar events disappeared? In my case, all the recurring calendar events were missing on the phone, but still appeared when I went to Google Calendar from my browser. Here are two ways to fix it.
Clear the cached calendar data
- From the Home screen, open the Menu and select Settings.
- Scroll down and select Applications, then Manage Applications.
- Select the Calendar Sync application.
- In the Storage section, click the Clear button.
Now, sync your Android calendar and all the events should come back. If they don’t, try the following fix.
Modify the missing events
If clearing the calendar cache, above, doesn’t work for you, then you can force the Android calendar data to update by modifying the contents of the missing events. Simply edit each event online in Google Calendar by changing the event name or other information about it. After modifying all the desired events, sync the calendar on the phone.
Which fix worked for you? Have another way to fix this problem? Post your findings in the comments.
Post a comment
Related posts:
by Peter Ridge
The zcat command line program in OS X has been broken for quite some time and is still that way in Snow Leopard. When trying to output the contents of a gzipped file, zcat appends .Z to the end of the file name that it’s given and outputs an error. The quick fix is to replace it with gzcat as follows:
$ cd /usr/bin
$ sudo mv zcat broken-zcat
$ sudo ln -s gzcat zcat
This process renames the original zcat program to broken-zcat and then creates a symbolic link called zcat that points to gzcat. This way, you don’t have to remember to specifically use gzcat. Running zcat will also use gzcat.
Post a comment