Advertisement
ChristianKl

Esperanto Special Characters

Jun 20th, 2015
451
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. AppsKey & G::  
  2.     if GetKeyState("Shift", "P")  
  3.         send Ĝ  
  4.     else  
  5.     send ĝ  
  6. return  
  7.  
  8. AppsKey & C::  
  9.     if GetKeyState("Shift", "P")  
  10.         send Ĉ  
  11.     else  
  12.     send ĉ  
  13. return  
  14.  
  15. AppsKey & J::  
  16.     if GetKeyState("Shift", "P")  
  17.         send Ĵ  
  18.     else  
  19.     send ĵ  
  20. return
  21.  
  22. AppsKey & H::  
  23.     if GetKeyState("Shift", "P")  
  24.         send Ĥ  
  25.     else  
  26.     send ĥ  
  27. return  
  28.  
  29. AppsKey & S::  
  30.     if GetKeyState("Shift", "P")  
  31.         send Ŝ  
  32.     else  
  33.     send ŝ  
  34. return  
  35.  
  36. AppsKey & U::  
  37.     if GetKeyState("Shift", "P")  
  38.         send Ŭ  
  39.     else  
  40.     send ŭ  
  41. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement