├── .all-contributorsrc ├── .circleci └── config.yml ├── .eslintrc.js ├── .gitignore ├── .nvatom-all-contributorsrc ├── .travis.yml ├── LICENSE.md ├── README.md ├── appveyor.yml ├── lib ├── atom-notes.js ├── config.coffee ├── interlink.js ├── notes-fs.js ├── notes-store.js ├── notes-view-list.js ├── notes-view.js └── select-list-view.js ├── menus └── atom-notes.cson ├── notebook ├── How to use.md └── Welcome.md ├── package.json ├── spec ├── .eslintrc.js ├── atom-notes-spec.js ├── interlink-spec.js ├── notes-fs-spec.js └── notes-store-spec.js └── styles └── atom-notes.less /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /npm-debug.log 3 | /node_modules 4 | /package-lock.json 5 | .tags* 6 | -------------------------------------------------------------------------------- /.nvatom-all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/.nvatom-all-contributorsrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/appveyor.yml -------------------------------------------------------------------------------- /lib/atom-notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/lib/atom-notes.js -------------------------------------------------------------------------------- /lib/config.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/lib/config.coffee -------------------------------------------------------------------------------- /lib/interlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/lib/interlink.js -------------------------------------------------------------------------------- /lib/notes-fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/lib/notes-fs.js -------------------------------------------------------------------------------- /lib/notes-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/lib/notes-store.js -------------------------------------------------------------------------------- /lib/notes-view-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/lib/notes-view-list.js -------------------------------------------------------------------------------- /lib/notes-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/lib/notes-view.js -------------------------------------------------------------------------------- /lib/select-list-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/lib/select-list-view.js -------------------------------------------------------------------------------- /menus/atom-notes.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/menus/atom-notes.cson -------------------------------------------------------------------------------- /notebook/How to use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/notebook/How to use.md -------------------------------------------------------------------------------- /notebook/Welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/notebook/Welcome.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/package.json -------------------------------------------------------------------------------- /spec/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/spec/.eslintrc.js -------------------------------------------------------------------------------- /spec/atom-notes-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/spec/atom-notes-spec.js -------------------------------------------------------------------------------- /spec/interlink-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/spec/interlink-spec.js -------------------------------------------------------------------------------- /spec/notes-fs-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/spec/notes-fs-spec.js -------------------------------------------------------------------------------- /spec/notes-store-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/spec/notes-store-spec.js -------------------------------------------------------------------------------- /styles/atom-notes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexicalunit/atom-notes/HEAD/styles/atom-notes.less --------------------------------------------------------------------------------