From 1cba32311975229d7c13966c6b5723943cfbd519 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?m=C3=B6si?= Date: Thu, 27 Aug 2009 10:41:09 +0000 Subject: =?UTF-8?q?fix=20f=C3=BCr=20#168:=20neovars=20geht=20jetzt=20mit?= =?UTF-8?q?=20Emacs=2023.1=20=E2=80=93=20allerdings=20ungetestet=20auf=20f?= =?UTF-8?q?r=C3=BCheren=20Emacs-Versionen.=20Sollten=20diese=20als=20ahk?= =?UTF-8?q?=5Fclass=20auch=20=C2=BBEmacs=C2=AB=20liefern,=20br=C3=A4uchte?= =?UTF-8?q?=20man=20noch=20irgendwie=20eine=20zus=C3=A4tzliche=20Fallunter?= =?UTF-8?q?scheidung,=20oder=20man=20m=C3=BCsste=20auf=20alternative=20Weg?= =?UTF-8?q?e=20zur=C3=BCckgreifen.=20Z.B.=20gibt=20es=20die=20Funktion=20u?= =?UTF-8?q?cs-insert=20[http://groups.google.com/group/de.comp.editoren/br?= =?UTF-8?q?owse=5Fthread/thread/7675e814012b0c4f/ed036fcbb645781b=3Flnk=3D?= =?UTF-8?q?raot]=20mit=20=C3=A4hnlicher=20Funktion,=20die=20offenbar=20sch?= =?UTF-8?q?on=20in=20fr=C3=BCheren=20Emacs-Versionen=20existiert.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.neo-layout.org@2056 b9310e46-f624-0410-8ea1-cfbb3a30dc96 --- windows/neo-vars/src/source/varsfunctions.ahk | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'windows') diff --git a/windows/neo-vars/src/source/varsfunctions.ahk b/windows/neo-vars/src/source/varsfunctions.ahk index 0bbbf2a..5e6f8a3 100644 --- a/windows/neo-vars/src/source/varsfunctions.ahk +++ b/windows/neo-vars/src/source/varsfunctions.ahk @@ -364,6 +364,9 @@ SendUnicodeChar(charCode){ { StringLower,charCode,charCode send % "^+u" . SubStr(charCode,3) . " " + } else IfWinActive,ahk_class Emacs + { + send % "^x8{Enter}" . SubStr(charCode,3) . "{Enter}" } else { static ki := "#" if (ki =="#") { @@ -394,6 +397,9 @@ SendUnicodeCharDown(charCode){ { StringLower,charCode,charCode send % "^+u" . SubStr(charCode,3) . " " + } else IfWinActive,ahk_class Emacs + { + send % "^x8{Enter}" . SubStr(charCode,3) . "{Enter}" } else { static ki := "#" if (ki =="#") { @@ -416,6 +422,9 @@ SendUnicodeCharDown(charCode){ SendUnicodeCharUp(charCode){ IfWinActive,ahk_class gdkWindowToplevel + { + ; nothing + } else IfWinActive,ahk_class Emacs { ; nothing } else { -- cgit v1.2.3