imsingh / ionic-atom-plugin

This is simple Ionic Snippet Plugin for Github's Atom Editor
MIT License
36 stars 9 forks source link

Problem on initialize Atom #11

Open marcelodearaujopedro opened 6 years ago

marcelodearaujopedro commented 6 years ago

Ubuntu 18.04 LTS Atom 1.27.1

captura de tela de 2018-05-28 14-19-30

danielOnTree commented 5 years ago

Hey ho, seams this plugin will not be supported but.....u can solve this if u open that plugin:

  1. ionic-framework-snippets\snippets\button.cson line 248 he forgot something

    <--- there should be something like ---> 'Button Full': 'prefix':'ionic-css-button-full' 'body' : """

    """ same on line 493 .....u can write there ----> 'Button Outline':

  2. snippets\list.cson He write two times ---> 'List Item': But it has to be unique---so change the second in 'List Item Divider':

<-- line 39 -->

'List Item':
  'prefix':'ionic-css-list-item'
  'body' : """
  <li class="item">
    ${1: Item}
  </li>
  """

'List Item':    <--  Here should stay something like 'List Item Divider': -->
  'prefix':'ionic-css-list:divider'
  'body' : """
  <div class="item item-divider">
      ${1:Item Divider}
  </div>
  """
gouen95 commented 5 years ago

@danielOnTree Thank bro