Skip to content

Commit

Permalink
Add f-keys support
Browse files Browse the repository at this point in the history
(cherry picked from commit 1e3c8cb)
  • Loading branch information
nikitabobko committed Nov 17, 2023
1 parent 1bd2a5b commit 45a2ebc
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/config/keysMap.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,27 @@ let keysMap: [String: Key] = [
"8": .eight,
"9": .nine,

"f1": .f1,
"f2": .f2,
"f3": .f3,
"f4": .f4,
"f5": .f5,
"f6": .f6,
"f7": .f7,
"f8": .f8,
"f9": .f9,
"f10": .f10,
"f11": .f11,
"f12": .f12,
"f13": .f13,
"f14": .f14,
"f15": .f15,
"f16": .f16,
"f17": .f17,
"f18": .f18,
"f19": .f19,
"f20": .f20,

"minus": .minus,
"equal": .equal,
"period": .period,
Expand Down

0 comments on commit 45a2ebc

Please sign in to comment.