- Joined
- Nov 17, 2011
- Messages
- 14,270
The number of special symbols available from the drop down menu when writing a post is limited. A very common missing symbol is the Ω.
Autohotkey can be used to circumvent this. I use the following little autohotkey script:
This script is loaded by Windows upon the text ohm by the symbol Ω.
To type Ohm without substitution, simply press CTRL-Z when autohotkey has replaces the text by the symbol. You then get the text without replacement.
The script can easily be amended to perform other substitutions as required, see the documentation and the forum.
Note that there are Versions V1 and V2 of autohotkey. I strongly recommend to go with V2.
Autohotkey can be used to circumvent this. I use the following little autohotkey script:
Code:
#Singleinstance
::ohm::Ω
::kohm::kΩ
::mOhm::mΩ
To type Ohm without substitution, simply press CTRL-Z when autohotkey has replaces the text by the symbol. You then get the text without replacement.
The script can easily be amended to perform other substitutions as required, see the documentation and the forum.
Note that there are Versions V1 and V2 of autohotkey. I strongly recommend to go with V2.