SPFab

Results 5 comments of SPFab

Hi, I too manage my dotfiles with a bare git repository and was looking to implement this with gitsigns. I however found a very easy solution to the problem, using...

I had a similar issue to @BlindingDark, that was however not fixed by #117 or his patch. In my case it was caused by Helpful-Mode. (Since helpful-mode likes to set...

@seagle0128 I have encountered the same bug. I used the following configuration to reproduce it: ```emacs-lisp (require 'package) (setq debug-on-error t no-byte-compile t byte-compile-warnings nil inhibit-startup-screen t package-archives '(("melpa" ....

I have the following code, that I think solves your issue: ``` (set-face-attribute 'child-frame-border nil :background "#ffffff") (setq company-box-doc-frame-parameters '((left-fringe . 10) (right-fringe . 10))) ``` The important part is...

@Lompik Thanks for your suggestion, it does indeed get rid of the high CPU usage issue, so it is a good temporary fix. The tradeoff is of course, that the...