Adam Sokolnicki
Adam Sokolnicki
So the convention might be that the stable package would be named `foobar` and the test version `foobar-test`. So user would be installing stable version by default and if he...
@JEG2 I am using this mode and yasnippets in version 0.7.0 and I'm not experiencing this problem. Maybe the culprit is something else in your setup?
Yes multiline snippets with tab stops work for me.
As a workaround I did something like this: ``` el (defun asok/bundle--around (fun &rest args) "Run FUN from the project root." (projectile-with-default-dir (projectile-project-root) (apply fun args))) (advice-add 'bundle-command :around #'asok/bundle--around)...
There's a [projectile](https://github.com/bbatsov/projectile) which has got file caching mechanism. Rinari would have to depend on it. It's easy to get files from subdirectories of the project root and invalidate cache....
I have a similar issue on develop. I have the variable `dotspacemacs-whitespace-cleanup` set to `'trailing`. In the markdown mode I'm unable to have double space at the end of a...
I was thinking of something basic: - User have setup Zeus (that is ran `zeus init` in the project root) - User starts Zeus in the console with `zeus start`,...
It might be dump at start. So if we are in the line with a word "render" look for partial or template. if there is a "belongs_to", "has_one", "has_many" singularize...
It's `next-error` and `previous-error`. By default binded to `M-g n` and `M-g p`. 2013/12/16 Cezar Halmagean [email protected] > Hi, is there a way to format the output so that it...
@dgutov yup I was answering the original question. But as you said, that will actually not bring you to the next failing example only to the next error in the...