Reputation: 2451
I googled this and I found some old stuff, where can I find the keyword shortcuts for netbeans, when I'm doing php development?
Upvotes: 1
Views: 1066
Reputation: 7752
If I understand you correctly, you are looking for the Code Template Abbreviations that allow you to do things like, for instance, type do
and then press the TAB
button and get:
do {
} while (true);
You can find all of these abbreviations under Tools > Options > Editor[TAB] > Code Templates[TAB]
. Then to see the abbreviations for PHP you can select PHP using the Language
combo box.
You can also add your own code templates here. See the following for the syntax for adding your own PHP code template.
http://netbeans.org/kb/docs/php/code-templates.html#syntax
Upvotes: 1
Reputation: 12883
Under options there's a keymap tab, not sure how complete that is though.
Upvotes: 1