Caleb Meyer
Caleb Meyer
I would love to see a feature that allowed snapshots. I use digital ocean as a minecraft server. If I could snapshot and restore from the last snapshot, I could...
Alternative way to accomplish this that's mildly more flexible: ``` cson '.source.gfm': 'Header': 'prefix': 'header' 'body': 'My name - $date' 'variables': 'date': ''' require moment moment().format("YYYY-MM-DD") ''' ``` If `$date`...
@Strae yeah, that would be even better than what I had there, although we'd have to be clear about when things were evaluated. Ideally every variable is evaluated lazily when...
I like the popup. Until atom has some place a person can go to look at settings across packages, it's going to be hard to discover these settings. I also...
I write ruby and use origami and as long as you keep your indentation decent (you should be doing this anyway) it works like a charm. @gregsexton if you get...
@ra100's fix worked for me as well. Clicking the checkbox to enable the addon was giving this error:  And copying icons up fixes it.
Something I ran into today (I'm not sure if this PR adds/fixes it) is current terminal tab doesn't re-focus the last text editor when you type `exit` at a terminal.
The code I'm using to test this is on my [fix-search branch](https://github.com/calebmeyer/vim-mode-plus-macros/tree/fix-search) on the vim-mode-plus-macros repo. When I run a macro that includes a search, dispatching the search commands gives...
Search API command is the result of dispatching `core:confirm` against the mini-editor. I believe it runs [search](https://github.com/t9md/atom-vim-mode-plus/blob/master/lib/search-model.js#L123) internally.
Yes. I would either like to be able to determine the success/failure of the search as the result of dispatching core:confirm, or I would like another way to determine it....