cliffordfajardo / atom-java-snippets

A collection of Java snippets for Atom
https://atom.io/packages/atom-java-snippets
MIT License
3 stars 1 forks source link

Print snippet conflicts with ide-java #3

Open richardsonian opened 6 years ago

richardsonian commented 6 years ago

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.

image

Suggested ways to fix:

richardsonian commented 6 years ago

Quick fix:

add the following code to your .atom/snippets.cson:

'.source.java':
    'Print Line':
      'prefix': 'sysout'
      'body':'System.out.println($1);$2'