├── .coffeelintignore ├── .github ├── no-response.yml └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── coffeelint.json ├── keymaps └── command-palette.cson ├── lib ├── command-palette-package.js └── command-palette-view.js ├── menus └── command-palette.cson ├── package.json ├── styles └── command-palette.less └── test └── command-palette-view.test.js /.coffeelintignore: -------------------------------------------------------------------------------- 1 | spec/fixtures 2 | -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/command-palette/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/command-palette/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/command-palette/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/command-palette/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/command-palette/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/command-palette/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/command-palette/HEAD/README.md -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/command-palette/HEAD/coffeelint.json -------------------------------------------------------------------------------- /keymaps/command-palette.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/command-palette/HEAD/keymaps/command-palette.cson -------------------------------------------------------------------------------- /lib/command-palette-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/command-palette/HEAD/lib/command-palette-package.js -------------------------------------------------------------------------------- /lib/command-palette-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/command-palette/HEAD/lib/command-palette-view.js -------------------------------------------------------------------------------- /menus/command-palette.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/command-palette/HEAD/menus/command-palette.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/command-palette/HEAD/package.json -------------------------------------------------------------------------------- /styles/command-palette.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/command-palette/HEAD/styles/command-palette.less -------------------------------------------------------------------------------- /test/command-palette-view.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/command-palette/HEAD/test/command-palette-view.test.js --------------------------------------------------------------------------------