7ute / symbols-list

An alternate symbol list sidebar for Atom.io text editor
GNU General Public License v3.0
32 stars 24 forks source link

Support ES6 class methods defined field-style with arrow notation #74

Closed iangilman closed 4 years ago

iangilman commented 5 years ago

For example:

class SomeClass extends React.Component {
  handleInputChange = (val) => {
    console.log('selectionMade: ', val);
  }
}

Babel supports this, and I think it's a relatively popular modality in the React world, but unfortunately in symbols-list those functions don't show up on the sidebar.

iangilman commented 4 years ago

Looks like I forgot to respond here when the change first landed, but thank you very much for fixing this! :-)