For some reason the keyboard numpad key 'del' don't work in the code editor. It seems to be only the 'del' key. (Note that my numpad del key works in other editors.) Is this a known issue?
v3.4.3.stable.official [242c05d12] Running on Ubuntu
This is a known issue: https://github.com/godotengine/godot/issues/56829
@Calinou I would say that numpad is working fine in 3.4 except this mentioned period.
Checked it in the code and for 3.x branch there's missing mapping for numpad delete. https://github.com/godotengine/godot/blob/7c49b8e70f1e2aff5447932302abe55276f5acd0/scene/gui/text_edit.cpp#L3481 For home key there are two mappings: https://github.com/godotengine/godot/blob/7c49b8e70f1e2aff5447932302abe55276f5acd0/scene/gui/text_edit.cpp#L3557 Just compiled 3.x with additional mapping and numpad delete started working, maybe should make a PR?
For master branch I can see that for now there are no different mappings for numpad keys so it won't work anyway: https://github.com/godotengine/godot/blob/84b358c1d8a01ce70a56a099ef98ae014a91239b/platform/linuxbsd/key_mapping_x11.cpp#L95
Just compiled 3.x with additional mapping and numpad delete started working, maybe should make a PR?
Indeed, feel free to open a pull request against 3.x for this :)
3.x
This will need a separate fix for master too.
master