├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── lib ├── entry.js ├── history.js └── main.js ├── package.json ├── spec ├── async-spec-helpers.js ├── cursor-history-spec.js └── fixtures │ ├── sample-1.coffee │ └── sample-2.coffee └── styles └── cursor-history.less /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | yarn.lock 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-cursor-history/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-cursor-history/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-cursor-history/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-cursor-history/HEAD/README.md -------------------------------------------------------------------------------- /lib/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-cursor-history/HEAD/lib/entry.js -------------------------------------------------------------------------------- /lib/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-cursor-history/HEAD/lib/history.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-cursor-history/HEAD/lib/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-cursor-history/HEAD/package.json -------------------------------------------------------------------------------- /spec/async-spec-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-cursor-history/HEAD/spec/async-spec-helpers.js -------------------------------------------------------------------------------- /spec/cursor-history-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-cursor-history/HEAD/spec/cursor-history-spec.js -------------------------------------------------------------------------------- /spec/fixtures/sample-1.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-cursor-history/HEAD/spec/fixtures/sample-1.coffee -------------------------------------------------------------------------------- /spec/fixtures/sample-2.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-cursor-history/HEAD/spec/fixtures/sample-2.coffee -------------------------------------------------------------------------------- /styles/cursor-history.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-cursor-history/HEAD/styles/cursor-history.less --------------------------------------------------------------------------------