-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f3121e9
Showing
2 changed files
with
248 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# ahk-flipped-text | ||
|
||
This script lets you easily type flipped text using a hotkey. | ||
|
||
By default, press <kbd>ALT + SHIFT + SPACE</kbd> to toggle in and out of writing | ||
flipped text. | ||
|
||
Supported characters: | ||
- Standard Latin alphabet a-z in both lower and upper cases | ||
- Arabic numerals 0-9 | ||
- Most punctuation available on English QWERTY keyboards | ||
|
||
## Planned features: | ||
|
||
Flip highlighted text function and hotkey. | ||
|
||
## Contributions Welcome! | ||
|
||
If you know of any more cool mirrored unicode, please feel free to pull request! | ||
|
||
<br/> | ||
|
||
--- | ||
|
||
<br/> | ||
|
||
<div style="text-align: right"> | ||
¡ʇƨǝnbǝɹ llnd oʇ ǝǝɹɟ lǝǝɟ ǝƨɐǝld 'ǝpoɔᴉun pǝoɹɹᴉɯ looɔ ǝɹoɯ ʎuɐ ɟo ʍouʞ noʎ ɟI | ||
</div> | ||
|
||
<h2 style="text-align: right"> | ||
¡ǝɯoɔlǝM ƨuoᴉʇnqᴉɹʇuoↃ | ||
</h2> | ||
|
||
<div style="text-align: right"> | ||
˙ʎǝʞʇoɥ puɐ uoᴉʇɔunɟ ʇxǝʇ pǝʇɥƃᴉlɥƃᴉɥ dᴉlℲ | ||
</div> | ||
|
||
<h2 style="text-align: right"> | ||
:ƨǝɹnʇɐǝɟ pǝuuɐlԀ | ||
</h2> | ||
|
||
<div style="text-align: right"> | ||
<ul style="direction: rtl"> | ||
<li>ƨpɹɐoqʎǝʞ ⅄⊥ᴚƎMΌ ɥƨᴉlƃuƎ uo ǝlqɐlᴉɐʌɐ uoᴉʇɐnʇɔund ʇƨoW</li> | ||
<li>6-0 ƨlɐɹǝɯnu ɔᴉqɐɹ∀</li> | ||
<li>ƨǝƨɐɔ ɹǝddn puɐ ɹǝʍol ɥʇoq uᴉ z-ɐ ʇǝqɐɥdlɐ uᴉʇɐ⅂ pɹɐpuɐʇƧ</li> | ||
</ul> | ||
ƨɹǝʇɔɐɹɐɥɔ pǝʇɹoddnƧ | ||
</div> | ||
|
||
<div style="text-align: right"> | ||
˙ʇxǝʇ pǝddᴉlɟ | ||
ƃuᴉʇᴉɹʍ ɟo ʇno puɐ uᴉ ǝlƃƃoʇ oʇ <kbd>ƎↃ∀ԀƧ + ⊥ℲIHƧ + ⊥⅂∀</kbd> ƨƨǝɹd 'ʇlnɐɟǝp ʎᗺ | ||
<br/> | ||
<br/> | ||
˙ʎǝʞʇoɥ ɐ ƃuᴉƨn ʇxɔǝʇ pǝddᴉlɟ ǝdʎʇ ʎlᴉƨɐǝ noʎ ƨʇǝl ʇdᴉɹɔƨ ƨᴉɥ⊥ | ||
</div> | ||
|
||
--- | ||
|
||
<h1 style="text-align: right"> | ||
ʇxǝʇ-pǝddᴉlɟ-ʞɥɐ | ||
</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
; flipped-text.ahk v1.0.0 | ||
; Copyright (c) 2023 Archie Adams | ||
; https://github.com/Archie-Adams/ahk-flipped-text | ||
; | ||
; MIT License | ||
; | ||
; Permission is hereby granted, free of charge, to any person obtaining a copy | ||
; of this software and associated documentation files (the "Software"), to deal | ||
; in the Software without restriction, including without limitation the rights | ||
; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
; copies of the Software, and to permit persons to whom the Software is | ||
; furnished to do so, subject to the following conditions: | ||
; | ||
; The above copyright notice and this permission notice shall be included in all | ||
; copies or substantial portions of the Software. | ||
; | ||
; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
; SOFTWARE. | ||
; | ||
|
||
;! ========================================================================== !; | ||
;! -------------------------------------------------------------------------- !; | ||
;!!!!!!!!!!!! IMPORTANT! THIS FILE MUST BE ENCODED WITH UTF8+BOM !!!!!!!!!!!!!!; | ||
;! -------------------------------------------------------------------------- !; | ||
;! ========================================================================== !; | ||
|
||
#NoEnv | ||
SetBatchLines, -1 | ||
|
||
global toggle_flipped_text := false | ||
; TODO: Small icon/window in screen corner when toggle text is on and the | ||
; hotkey to get out of it? | ||
|
||
; --------------------------------- Functions -------------------------------- ; | ||
|
||
toggleFlippedTextToggle() { | ||
toggle_flipped_text := !toggle_flipped_text | ||
} | ||
|
||
flipText(text) { | ||
; TODO: Replace all characters in text that can be replaced. | ||
|
||
; Good example perhps | ||
; https://www.autohotkey.com/board/topic/24431-convert-text-uppercase-lowercase-capitalized-or-inverted/ | ||
|
||
return text | ||
} | ||
|
||
flipSelectedText() { | ||
; TODO: Implement me. | ||
; Save clipboard to variable | ||
; Send, ^x | ||
; text = clipboard | ||
; text := flipText(text) | ||
; Send, %text% | ||
; cloboard = saved previous clipboard | ||
; saved previous clipboard := "" // in case it's massive | ||
} | ||
|
||
; ---------------------------------- Hotkeys --------------------------------- ; | ||
|
||
!+Space::toggleFlippedTextToggle() | ||
; #!+Space::flipSelectedText() ; TODO; | ||
|
||
#If (toggle_flipped_text) | ||
|
||
; Non-standard characters | ||
:*:‿::Send ⁀{Left} ; - CHARACTER TIE (U+2040) | ||
:*:⁅::Send ⁆{Left} ; - RIGHT SQUARE BRACKET WITH QUILL (U+2046) | ||
:*:∴::Send ∵{Left} ; - BECAUSE (U+2235) | ||
|
||
; Typing keys | ||
Space::Send {Space}{Left} | ||
Enter::Send {End}{Enter} | ||
Tab::Send {Tab}{Left} | ||
Left::Send {Right} | ||
Right::Send {Left} | ||
Delete::Send {Backspace} | ||
Backspace::Send {Delete} | ||
|
||
; Punctuation | ||
; TODO: Rest of standard keyboaard punctuation | ||
!::Send ¡{Left} ; - INVERTED EXCLAMATION MARK (U+00A1) | ||
; @ ; - ; FIXME | ||
#::Send #{Left} ; - Identical | ||
; £ ; - ; FIXME | ||
$::Send ${Left} ; - Identical | ||
; % ; - ; FIXME | ||
; ^ ; - ; FIXME | ||
&::Send ⅋{Left} ; - TURNED AMPERSAND (U+214B) | ||
; * | ||
|
||
"::Send „{Left} ; - DOUBLE LOW9 QUOTATION MARK (U+201E) | ||
'::Send ,{Left} ; - COMMA (U+002C) | ||
|
||
(::Send ){Left} ; - RIGHT PARENTHESIS (U+0029) | ||
)::Send ({Left} ; - Left PARENTHESIS | ||
<::Send >{Left} ; - Greater THAN SIGN (U+003E) | ||
>::Send <{Left} ; - Less than sign | ||
{::Send {}}{Left} ; - RIGHT CURLY BRACKET (U+007D) | ||
}::Send {{}{Left} ; - Left CURLY BRACKET | ||
[::Send ]{Left} ; - RIGHT SQUARE BRACKET (U+005D) | ||
]::Send [{Left} ; - Left SQUARE BRACKET | ||
|
||
.::Send ˙{Left} ; - DOT ABOVE (U+02D9) | ||
,::Send {`'}{Left} ; - apostrophe | ||
`;::Send ؛{Left} ; - ARABIC SEMICOLON (U+061B) | ||
?::Send ¿{Left} ; - INVERTED QUESTION MARK (U+00BF) | ||
_::Send ‾{Left} ; - OVERLINE (U+203E) | ||
|
||
; Numbers | ||
0::Send 0{Left} ; - Identical | ||
1::Send ⇂{Left} ; - Downwards Harpoon With Barb Rightwards (U+21C2) | ||
2::Send ᘔ{Left} ; - Canadian Syllabics Carrier JU (U+1614) | ||
3::Send Ɛ{Left} ; - LATIN CAPITAL LETTER OPEN E (U+0190) | ||
4::Send ߈{Left} ; - Nko Digit Eight (U+07C8) | ||
5::SEND ဌ{Left} ; - Myanmar Letter TTHA (U+100C) | ||
6::Send 9{Left} ; - DIGIT NINE (U+0039) | ||
7::Send Ɫ{Left} ; - LATIN CAPITAL LETTER L WITH MIDDLE TILDE (U+2C62) | ||
8::Send 8{Left} ; - Identical | ||
9::Send 6{Left} ; - Digit Six | ||
|
||
; Capitalised Latin Letters | ||
+A::Send ∀{Left} ; - FOR ALL (U+2200) | ||
+B::Send ᗺ{Left} ; - Canadian Syllabics Carrier Kha (U+15FA) | ||
+C::Send Ↄ{Left} ; - ROMAN NUMERAL REVERSED ONE HUNDRED (U+2183) | ||
+D::Send ᗡ{Left} ; - Canadian Syllabics Carrier Tha (U+15E1) | ||
+E::Send Ǝ{Left} ; - LATIN CAPITAL LETTER REVERSED E (U+018E) | ||
+F::Send Ⅎ{Left} ; - TURNED CAPITAL F (U+2132) | ||
+G::Send ⅁{Left} ; - TURNED SANSSERIF CAPITAL G (U+2141) | ||
+H::Send H{Left} ; - Identical | ||
+I::Send I{Left} ; - Identical | ||
+J::Send ſ{Left} ; - LATIN SMALL LETTER LONG S (U+017F) | ||
+K::Send Ʞ{Left} ; - Latin Capital Letter Turned K (U+A7B0) | ||
+L::Send ⅂{Left} ; - TURNED SANSSERIF CAPITAL L (U+2142) | ||
+M::Send W{Left} ; - LATIN CAPITAL LETTER W (U+0057) | ||
+N::Send ᴎ{Left} ; - LATIN LETTER SMALL CAPITAL REVERSED N (U+1D0E) | ||
+O::Send O{Left} ; - Identical | ||
+P::Send Ԁ{Left} ; - CYRILLIC CAPITAL LETTER KOMI DE (U+0500) | ||
+Q::Send Ό{Left} ; - GREEK CAPITAL LETTER OMICRON WITH TONOS (U+038C) | ||
+R::Send ᴚ{Left} ; - LATIN LETTER SMALL CAPITAL TURNED R (U+1D1A) | ||
+S::Send Ƨ{Left} ; - https://en.wikipedia.org/wiki/%C6%A7 | ||
+T::Send ⊥{Left} ; - UP TACK (U+22A5) | ||
+U::Send ∩{Left} ; - INTERSECTION (U+2229) | ||
+V::Send ᴧ{Left} ; - GREEK LETTER SMALL CAPITAL LAMDA (U+1D27) | ||
+W::Send M{Left} ; - Latin capital letter M | ||
+X::Send X{Left} ; - Identical | ||
+Y::Send ⅄{Left} ; - TURNED SANSSERIF CAPITAL Y (U+2144) | ||
+Z::Send Z{Left} ; - ; FIXME | ||
|
||
; Lowercase Latin Letters | ||
a::Send ɐ{Left} ; - LATIN SMALL LETTER TURNED A (U+0250) | ||
b::Send q{Left} ; - LATIN SMALL LETTER Q (U+0071) | ||
c::Send ɔ{Left} ; - LATIN SMALL LETTER OPEN O (U+0254) | ||
d::Send p{Left} ; - LATIN SMALL LETTER P (U+0070) | ||
e::Send ǝ{Left} ; - LATIN SMALL LETTER TURNED E (U+01DD) | ||
f::Send ɟ{Left} ; - LATIN SMALL LETTER DOTLESS J WITH STROKE (U+025F) | ||
g::Send ƃ{Left} ; - LATIN SMALL LETTER B WITH TOPBAR (U+0183) | ||
h::Send ɥ{Left} ; - LATIN SMALL LETTER TURNED H (U+0265) | ||
i::Send ᴉ{Left} ; - Latin Small Letter Turned I (U+1D09) | ||
j::Send ɾ{Left} ; - LATIN SMALL LETTER R WITH FISHHOOK (U+027E) | ||
k::Send ʞ{Left} ; - LATIN SMALL LETTER TURNED K (U+029E) | ||
l::Send l{Left} ; - Identical | ||
m::Send ɯ{Left} ; - LATIN SMALL LETTER TURNED M (U+026F) | ||
n::Send u{Left} ; - LATIN SMALL LETTER U (U+0075) | ||
o::Send o{Left} ; - Identical | ||
p::Send d{Left} ; - Latin Small Letter D (U+0064) | ||
q::Send b{Left} ; - Latin Small Letter B (U+0062) | ||
r::Send ɹ{Left} ; - LATIN SMALL LETTER TURNED R (U+0279) | ||
s::Send ƨ{Left} ; - minuscule https://en.wikipedia.org/wiki/%C6%A7 | ||
t::Send ʇ{Left} ; - LATIN SMALL LETTER TURNED T (U+0287) | ||
u::Send n{Left} ; - Latin lowercase n | ||
v::Send ʌ{Left} ; - LATIN SMALL LETTER TURNED V (U+028C) | ||
w::Send ʍ{Left} ; - LATIN SMALL LETTER TURNED W (U+028D) | ||
x::Send x{Left} ; - Identical | ||
y::Send ʎ{Left} ; - LATIN SMALL LETTER TURNED Y (U+028E) | ||
z::Send z{Left} ; - ; FIXME | ||
|
||
#If |