With atom's java-ide (and its dependency, atom-ide-ui) installed, the print -> System,out.println(); snippet is overshadowed by the ide's code completion.
When a user presses tab in the following scenario, the line is replaced with the first of the ide's code completions, and not the code snippet.
Suggested ways to fix:
Make the snippet completion character configurable in the package's settings, so users can set it to something else so that it doesn't conflict with the ide's autocomplete
change the print keyword to sysout to mirror eclipse (less favorable)
(on that note the keywords should be configurable too, but that's a different issue)
With atom's java-ide (and its dependency, atom-ide-ui) installed, the print -> System,out.println(); snippet is overshadowed by the ide's code completion.
When a user presses tab in the following scenario, the line is replaced with the first of the ide's code completions, and not the code snippet.
Suggested ways to fix: