Mark Battersby

Results 21 comments of Mark Battersby

This also breaks search (triggered by `/`) in Vim mode. I think some additional "contexts" need to be added to this keybinding: https://github.com/borela/naomi/blob/a1034a85cfc8e924e1e9a181765549fb890956a8/Default.sublime-keymap#L353-L378 The additional contexts are: ```js // to...

@AlexKvazos my comment above outlines what I think are the correct fixes, but I haven't fully tested them myself.

Just a heads up in case it applies to anyone else, I ran into a similar issue because I had a setup like this: ```jsx {this.props.children} ``` ```css .modal-container {...

[This stackoverflow answer](http://stackoverflow.com/a/20077620) will likely be your solution. If you look at the top of your `/home/michael-heuberger/npm/bin/coffee` file, you should see the line ``` bash #!/usr/bin/env node ``` This is...

This should have been added with https://github.com/aponxi/sublime-better-coffeescript/commit/e5d696d144fd2fbc244bc0b6d53037ba06bd0f2f -- can you describe your setup so we can try to find where the bug is?

With this `.sublime-project` file: ``` json { "folders": [ { "follow_symlinks": true, "path": "." } ] } ``` And this `CoffeeScript.sublime-settings` ``` json { "compileOnSave": true, "compilePaths": { "test/coffee": ".."...

``` json { "folders": [ { "follow_symlinks": true, "path": "/Users/mark/scripts" } ], "settings": { "CoffeeScript": { "compileOnSave": true, "compilePaths": { "Testing/coffeescript": ".." } } } } ``` With this setup,...

Also, and this may seem obvious, but the `.coffee` file you're saving isn't in `/Testing/coffeescript/coffeescript`, right? Because that would cause this exact issue (ie. folder hierarchy is retained).

Any chance it could have been marked as "Disabled" due to a Sublime issue when updating the package? Maybe related to [this](https://github.com/aponxi/sublime-better-coffeescript/issues/158#issuecomment-61859194)?