We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Are there any docs for the editor?
E.g. covering commands such as CTRL+click variable reference.
You'd kinda hope this was covered in https://processing.org/reference/environment/, but no.
Answers
SEE TUTorials maybe....?
I'd rather not watch hours of videos to search for particular commands.
Processing is open-source. Add the documentation you feel is missing.
Notice how that hasn't worked very well for others so far? :)
? The github wiki is free to edit. Fork and pull request the reference pages here:
https://github.com/processing/processing-docs
That suggestion is better directed at someone who has the missing editor command information. I don't, and that's why I am asking where it can be found.
A good amount of them are here: https://github.com/processing/processing/blob/master/app/src/processing/app/ui/Editor.java
Look for the "newJMenuItemShift" lines. Please feel free to add these to the reference.
That's source, not docs.
I'm suggesting that you go through the source and figure out the shortcuts from that. I've pointed you to the lines in question. Processing is open source, and part of that means that you should add the stuff (like documentation) that you think is missing.
these are actually the key bindings for the menu items, you can see them listed in the menus.
in fact, the menu key bindings are probably documentation enough. they are right there in the editor.
and some actual key bindings here:
https://github.com/processing/processing/blob/0abee5af6ad3b11cf2b73bb794b8a97c157c4762/app/src/processing/app/syntax/PdeInputHandler.java#L66
but there's nothing clever there, just various movements and selecting.