C
cverbiest
Guest
Usefull list, some remarks based on my experience The most useful short-cut (after ctrl-shift-L) : ctrl-shift-R Open resource, allows you to search in all open projects on resource name. You can use wildcards and if your resource name is UpperCamelCased you can search using the capital letters only : e.g. EH will show ErrorHelper.cls Build tip : http://geek-and-poke.com/geekandpoke/2014/11/29/developers-madness Link view with Editor – Easy option to navigate to multiple files in Editor should be avoided as it can cause serious performance degradation , use alt-shift-w instead to link the Project explorer when you need it instead of having it switch all the time. Formatting and keeping the code clean, as you type or at one go – Increase your productivity many folds auto correct case during save can cause serious ( 2 minutes) delay during save. correct casing from the menu and save separate does not have this issue (see bug OE00241262), not sure if it's fixed, I don't use that setting any more correct indentation is not useful as it cannot be configured to match coding conventions , e.g. the way it indents "then" , our convention has "then do:" on one line and "else if "/ "else do:" with the same indent.
Continue reading...
Continue reading...