Joel Holder
Joel Holder
What about just doing this: https://github.com/slashmili/alchemist.vim/commit/c19cb7d09518eb07f3b05b940f8475fa45daa03c#diff-f5284b7f9196da43f995606163114982R358
+1 same issue still in the go forward fork: https://github.com/kaporzhu/protobuf-to-dict. We should fix this, because it makes the dictionary output not fully representative of a protobuf.
I get this error when I try to push a commit (with 'p') via automatigit.
Same issue here. I'm just wanting to draw some vectors with arrow heads that are all the same size. Would look much better if we could have a uniform sized...
I have the same issue. I'm not doing anything special. ```lisp (use-package atom-one-dark-theme :demand t :config (progn (load-theme 'atom-one-dark))) ``` Example in emacsclient:  I have read that when you...
I found a workaround. Not pretty, but it does address the issue. ```lisp (if (daemonp) (add-hook 'after-make-frame-functions (defun my/theme-init-daemon (frame) (with-selected-frame frame (load-theme 'atom-one-dark)) ;; Run this hook only once....
It's because of this line: https://github.com/jonathanchu/atom-one-dark-theme/blob/b34b62e85593812b55ee552a1cb0eecfb04767bb/atom-one-dark-theme.el#L34 When it runs, it's expecting either 24bit or 256 color. The var `256color` was false, even through I had: ```bash export TERM=xterm-256color ``` What...
+1 for this feature. I am currently having to use msgpax/protobuf to move maps dicts cleanly.
+1 - for this feature. The current date stamp format doesn't support the ms precision we need.
Try this. It works: ```elisp (use-package flymake-cursor :ensure t) (use-package flymake-google-cpplint :ensure t :init :config (add-hook 'c-mode-hook 'flymake-google-cpplint-load) (add-hook 'c++-mode-hook 'flymake-google-cpplint-load) (custom-set-variables '(flymake-google-cpplint-command "/usr/local/bin/cpplint") '(flymake-google-cpplint-verbose "--verbose=0") '(flymake-google-cpplint-filter "--filter=-whitespace/line_length,-build"))) ``` Setting...