Skip to content

Commit

Permalink
Added degree symbol and equals
Browse files Browse the repository at this point in the history
Pressing [2nd]>[apps] now outputs `°` rather than activating ctrl+b.
Pressing [2nd]>[+] now outputs `=` rather than triggering ctrl+tab.
  • Loading branch information
TheLastMillennial committed Apr 19, 2021
1 parent 733eed1 commit b729df3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/CEyboard.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ TrayTip, CEyboard, Press [alpha] then [mode] to swap modes. Numlock status: %num
if alpha ; Alpha
SendInput, B
else if second ; 2nd
SendInput, ^b
SendInput, °
}
else ; no modifier
{
Expand Down Expand Up @@ -1010,7 +1010,7 @@ TrayTip, CEyboard, Press [alpha] then [mode] to swap modes. Numlock status: %num
if alpha ; Alpha
SendInput, {"}
else if second ; 2nd
SendInput, ^{Tab}
SendInput, =
} ; no modifier
else
SendInput, {NumpadAdd}
Expand Down

0 comments on commit b729df3

Please sign in to comment.