Jasper v. B.
Jasper v. B.
I think this package is dead and has been replaced by [webBoxio/atom-term2](https://github.com/webBoxio/atom-term2). That package is still being maintained whilst this one has not been updated for over a year now.
Implementing Linux support basically required an entire rewrite due to the different APIs for Mac and Linux, so I did that and published it as https://atom.io/packages/spotify-linux. I'll look into merging...
Yes, atom-spotify only works on a Mac, there's been a closed issue for windows at #18.
You could try adding the following to your stylesheet: ``` less div.spotify-container { max-width: 100px; overflow: hidden; text-overflow: ellipsis; } ```
That commit mostly just copied [the CI template](https://github.com/atom/ci/blob/master/.travis.yml), which uses `generic` but I think it used to use `objective-c`.
Thanks for this :smile: Commands are in lib/ex.coffee, you can just add a function called redo.
How did you encounter this error? And does it also occur when you disable the `dart-tools` package?
Is there any reason why you can't just use Atom's keymap feature? Just put this in your `keymap.cson`: ``` cson 'atom-text-editor.vim-mode:not(.insert-mode)': ':': 'vim-mode:repeat-find' ';': 'ex-mode:open' ``` I suppose it would...
You're right, the section at the bottom doesn't exist. I think the best way to display this sort of information in Atom is using the built-in [Notifications](https://atom.io/docs/api/v1.10.2/Notification), so you could...
I briefly experimented with this by just removing the `activationCommands` from `package.json`, but ex-mode then adds about 100-110ms to startup time which is a bit much IMHO.