7

I'm using Windows 7 system with an Italian keyboard layout

Italian layout

As you can see, this layout misses the tilde ~ character and the backtick character.

By the way, backtick is not so important, because I can emulate it in a Bash script using $( and ).

The problem is that every time I need the tilde, I have to hold Alt and type 1 + 2 + 6 (i.e. its ASCII code); it's boring!

And I need it not only in Cygwin, but also in GNU R, in Eclipse, and much more.

Have you have had this problem with a not-US layout? Is there a fastest way to type the tilde?

Alberto
  • 385

3 Answers3

8

According to http://msdn.microsoft.com/en-us/goglobal/bb964651.aspx there's a layout called "Italian (142)", which has ` and ~ accessible via AltGr.

2

Windows 7:

With an Italian keyboard, follow these steps:

  1. press Alt (the one on the left of the spacebar)

  2. press 1, 2 and 6 on the numeric keypad

  3. release Alt

and finally "~" will appear.

Ubuntu (it was tried on Ubuntu 14.04 (Trusty Tahr)):

Press AltGr + ì (accented i = ì)

1

You could use 'TyperTask' and create a set of keystrokes, let’s say ºtilde to trigger ~ (tilde):

ºtilde=~

'TyperTask' Source: http://www.vtaskstudio.com/support.php

'TyperTask' Portable: TyperTask Portable

gamx
  • 11