-
Notifications
You must be signed in to change notification settings - Fork 6.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Quick Accent: Enhancement: Add "¡" and "¿" to "!" and "?" quick accent menu #20618
Comments
Both are available, but they are accessed from the comma ( The fix to add It looks like it might be possible to have characters mapped to the question mark |
I understand there may not be a usable implementation of this request with the current version of Quick Accent: looking at KeysEnums.cs, it seems to only "listen" to numbers, letters, and the comma (the reason for the current assignment to comma of "¡" and "¿" ?) But I am still missing something, because for "/" it offers "÷" as an option. Maybe in the future, a "customizable" version could be possible, where the user may assign needed keys for their own keyboard, e.g. for me "¡" on the "1"/"!" key, and "¿" to the "/"-"?" key (and a German user assign the "¿" on the upper side of the keyboard to the "ß"/"?" key) Regarding the comment above, about a technical reason for nothing being assigned to a "?" key, could it be that it is not listed in KeysEnums.cs? Maybe this is for a good reason: looking up some international keyboards, I was not able to find the "?" key on the Portuguese or Ukranian keyboards for example. Also, Quick Accent seems to ignore the shift key; on a US keyboard the options presented to "3" are the same as for "#" (consistent with what KeysEnums.cs shows), and the "!" and "?" are usually "shifted" keys already, not "base" keys, located over different base keys on different international keyboards, when present. To be useful, for example on a US Keyboard, see the precedent of the "US International" keyboard from Microsoft, and look up the positions for "¡" and "¿" (on the "1"/"!" and "/"-"?" keys with AltGr). |
As new user of Quick Accent on a german Keyboard layout working with spanish characters, my assumption was that I have to hit "SHIFT + ? + SPACEBAR" as I assume that the qustion mark will would be upside down as a result. |
@rorar, that is not really possible, since Quick Accent determines what key you pressed based on the Virtual Key Code (VK), not the character that was sent. That means that pressing Shift has no effect on the output, other than capitalizing the characters, if possible. The VK for the ß? key on the German keyboard layout is The developers decided that !¡?¿ will be on the comma key and there isn't really a better way to do it. And @atseewal, I don't think there is a technical reason that would make it impossible to have ¿ on As you said, I think that the fix should be adding ¡ to Spanish. |
Description of the new feature / enhancement
When "!" + is pressed, a menu with "¡" appears.
When "?" + is pressed, a menu with "¿" appears.
Scenario when this would be used?
This is a set of characters used when writing in Spanish. It marks the beginning of an exclamation or question in a sentence.
Supporting information
No response
The text was updated successfully, but these errors were encountered: