0.0.0 • Published 7 years ago

atom-quick-select v0.0.0

Weekly downloads
5
License
MIT
Repository
-
Last release
7 years ago

atom-quick-select

Work in progress

Example: Simple

'use babel';

import quickSelect from 'atom-quick-select';

const selection = await quickSelect(['One', 'Tow', 'Three'])
if (selection) {
  console.log('selection', selection)
}

npm.io

Example: Detailed

'use babel';

import quickSelect from 'atom-quick-select';

const selection = await quickSelect([
  { label: 'One' description: 'Number 1' },
  { label: 'Tow' description: 'Number 2' },
  { label: 'Three' description: 'Number 3' }
])
if (selection) {
  console.log('selection', selection)
}

npm.io

License

The MIT License

0.1.1

7 years ago

0.1.0

7 years ago

0.1.0-beta.3

7 years ago

0.1.0-beta.2

7 years ago

0.1.0-beta.1

7 years ago

0.0.0

7 years ago