how to represent arrows and delete key in the "Customize symbols and number layouts" section? #1049
-
I'd like to have arrows and a delete key (to remove character to the right of the cursor), so am trying to add them in the layout customization section of the app's settings. Problem is that I'm not sure how to represent either one. I tried all of Up, {Up}, and [Up], for example, but these are all being interpreted literally. Should I pursue this or just wait for the D-pad that you guys are working on (#885)? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
The arrow keys are indicated like this: The "delete" key is simply indicated with So, to customize your layout, you can write something like that: { "label": "left", "type": "normal", "width": 0.1 },
{ "label": "up", "type": "normal", "width": 0.1 },
{ "label": "right", "type": "normal", "width": 0.1 },
{ "label": "down", "type": "normal", "width": 0.1 },
{ "label": "delete", "type": "normal", "width": 0.1 }, Below is my symbol view for example. |
Beta Was this translation helpful? Give feedback.
-
Hi BlackyHawky. Gosh, I guess the way to represent arrows was too obvious for me. Thanks for your help.
|
Beta Was this translation helpful? Give feedback.
The arrow keys are indicated like this:
↑:
up
↓:
down
← :
left
→ :
right
The "delete" key is simply indicated with
delete
.So, to customize your layout, you can write something like that:
Below is my symbol view for example.
See screenshot