Richard Kim

Results 68 comments of Richard Kim

Disabling `page-break-lines-mode` fixed the problem even on my spacemacs, i.e., I added ```elisp (global-page-break-lines-mode 0) ``` within `dotspacemacs/user-config` function in my `.spacemacs` file. At first I tried disabling `page-break-lines-mode` only...

Ever since I disabled `page-break-lines-mode` a month ago, I've had no problem with orb-roam buffer. I never have to call org-roam-buffer-refresh. I use latest develop branch of spacemacs. If anyone...

My work-around for this is the following. Perhaps shell-file-name should be set (relying on dynamic binding) within irony code. ``` (defun my--advice-irony-start-process (orig-func &rest args) (let ((shell-file-name "/bin/sh")) (apply orig-func...

I think no code exist to search current file using rg, and I don't think we should write such code when there are so many other options. IMHO we should...

I just discovered that volatile-highlights caused many problems for me. I got fed up with 'd d' bound to evil-delete taking minimum 3 seconds, that I took a closer look....

If I submit a PR which removes volatile-highlights, would that be accepted? I don't know anything about the alternatives such as evil-goggles mentioned above.

I set `vim-style-visual-feedback` to `t`, restarted emacs, and verified that `evil-goggles-mode` was `t`. I removed lines via `d d` as well as over 100 thousand lines in my *shell* buffer....

Removing volatile-highlight is easy. I don't know what you mean by replacing it with evil-goggles. evil-goggles is already a user option via `vim-style-visual-feedback`. If you mean to replacing with evil-goggles...

Sorry. I don't understand. This is an area I don't know much about.

Normally packages installed by users are installed under the directory specified via `package-user-dir` variable. Emacs searches this directory when looking for installed packages. In addition it also searches under the...