We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi everyone!
When I'm trying to search within my code base and open a result, an empty buffer opens instead.
SPC g /
enter
Observed behaviour: 👀 💔
mouse-1: select candidate mouse-3: menu actions
Expected behaviour: ❤️ 😄
(go (typescript :variables typescript-backend 'tide typescript-linter 'eslint typescript-fmt-tool 'prettier typescript-lsp-linter nil) sql python elixir html clojure emoji typescript nginx docker csv helm emacs-lisp elm git (node :variables node-add-modules-path t) javascript tide (keyboard-layout :variables kl-layout 'dvp) markdown neotree org osx ruby yaml shell-scripts)
<<BACKTRACE IF RELEVANT>>
I've tried to disable all mouse actions within my editor by adding this code.
(defun dotspacemacs/user-config () (define-key evil-normal-state-map (kbd "<C-down-mouse-1>") 'nothing) (define-key evil-normal-state-map (kbd "<M-down-mouse-1>") 'nothing) (define-key evil-normal-state-map (kbd "<mouse-2>") 'nothing) (define-key evil-normal-state-map (kbd "<M-drag-mouse-1>") 'nothing) (define-key evil-normal-state-map (kbd "<M-mouse-1>") 'nothing) (define-key evil-normal-state-map (kbd "<M-mouse-2>") 'nothing) (define-key evil-normal-state-map (kbd "<M-mouse-3>") 'nothing) (define-key evil-normal-state-map (kbd "<S-mouse-1>") 'nothing) (define-key evil-normal-state-map (kbd "<S-mouse-2>") 'nothing) (define-key evil-normal-state-map (kbd "<S-mouse-3>") 'nothing) (define-key evil-normal-state-map (kbd "<mouse-3>") 'nothing) (dolist (mouse '("<down-mouse-1>" "<mouse-1>")) (global-unset-key (kbd mouse)))
However I still see the same behavior even if I comment that out
The text was updated successfully, but these errors were encountered:
Hi @JuanCaicedo,
it seems to be an upstream issue, please check the solution mentioned here yasuyk/helm-git-grep#52.
Although not a direct solution, but I find using e.g. ag much faster to search the code base.
ag
Sorry, something went wrong.
Thanks for that tip! I added (setq helm-allow-mouse nil) to my spacemacs file and that fixed it 😀
(setq helm-allow-mouse nil)
No branches or pull requests
Hi everyone!
Description
When I'm trying to search within my code base and open a result, an empty buffer opens instead.
Reproduction guide 🪲
SPC g /
from within a git projectenter
Observed behaviour: 👀 💔
Expected behaviour: ❤️ 😄
System Info 💻
Backtrace 🐾
Other info
I've tried to disable all mouse actions within my editor by adding this code.
However I still see the same behavior even if I comment that out
The text was updated successfully, but these errors were encountered: