Active cell - Start editing with symbol key #138
abennett418
started this conversation in
Feature requests
Replies: 1 comment 1 reply
-
Hey @abennettHS , |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
Currently, if you have a cell active but you are not yet editing, you can start typing and it automatically starts editing. This however is limited and does not allow most symbols. Is there is a reason for only allowing a limited set?
I require the ability to auto start editing if the user inputs
=
,<
or>
. However, I do not see any reason why the rest of the symbols should not also be supported.The current regex is
/^[a-zA-Z0-9 ,.+-]$/
Some possible solutions:
/^[ -~]$/
/^[a-zA-Z0-9 !@#$%^&*()_+-=\[\]{}:;'",./<>?\\|~`]$/
Beta Was this translation helpful? Give feedback.
All reactions