Reputation: 3960
I am developing a program where we need to implement key F13, but I can't find F13 on the keyboard. Which code belongs to key F13 on a normal keyboard?
I can use key F11 and key F12, but I am not sure what the F13 key code is. The Class Qt.Key mentions "Key_13".
Upvotes: 1
Views: 11808
Reputation: 819
Try from F1 to F12 (in Vim after typing i_ctrl-v):
Upvotes: 0
Reputation: 41
There are a lot keyboard which have an additonal F-Key row F13-F24 (especially older ones - look for old IBM boards) and also some of the newer custom keyboard feature F13 keys like the recently introduced NovelKeys NK87. In general it is a standard keycode and if you have no physical key assigned to it, you can remap another physical key to F13 by software or firmware (just look up QMK firmware).
Upvotes: 0
Reputation: 65
I'm pretty sure that somewhere out in the world, there exists a keyboard with the F13-F24 keys, but I haven't seen any so far. So if you don't have one of those weird keyboards, you can access these keys by pressing shift: Shift+F1 becomes F13, Shift+F2 becomes F14, etc...
Upvotes: 0