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
I have it disabled by setting (lsp-bridge-enable-inlay-hint nil) but it keeps enabling itself after waiting 5-10 seconds.
(lsp-bridge-enable-inlay-hint nil)
GNU Emacs 30.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.38, cairo version 1.18.0)
(use-package lsp-bridge :straight '(lsp-bridge :type git :host github :repo "manateelazycat/lsp-bridge" :files (:defaults "*.el" "*.py" "acm" "core" "langserver" "multiserver" "resources") :build (:not compile)) :custom (acm-enable-yas nil) (acm-enable-icon nil) (acm-enable-tabnine nil) (acm-enable-codeium nil) (acm-enable-seach-file-words nil) (acm-doc-frame-max-lines 25) (lsp-bridge-nix-lsp-server "nil") (lsp-bridge-enable-hover-diagnostic t) (lsp-bridge-code-action-enable-popup-menu nil) (lsp-bridge-enable-inlay-hint nil) (lsp-bridge-inlay-hint-overlays '()) :init (global-lsp-bridge-mode) (let ((filtered-list (cl-delete 'lsp-bridge-not-match-hide-characters lsp-bridge-completion-popup-predicates))) (setq lsp-bridge-completion-popup-predicates filtered-list)) ;; <ret> is very annoying because lsp-bridge is too fast, unset it (keymap-unset acm-mode-map "RET") (define-key lsp-bridge-mode-map (kbd "C-c e") 'lsp-bridge-diagnostic-jump-next) (define-key lsp-bridge-mode-map (kbd "C-c f") 'lsp-bridge-find-def) (define-key lsp-bridge-mode-map (kbd "C-c n") 'lsp-bridge-rename) (define-key lsp-bridge-mode-map (kbd "C-c a") 'lsp-bridge-code-action) (define-key lsp-bridge-mode-map (kbd "C-c r") 'lsp-bridge-find-references) (define-key lsp-bridge-mode-map (kbd "C-c .") 'lsp-bridge-popup-documentation))
The text was updated successfully, but these errors were encountered:
Fix issue #817, don't send reqeust if lsp-bridge-enable-inlay-hint is…
94620c7
… disable.
Has fixed, thanks for report. ;)
Sorry, something went wrong.
No branches or pull requests
I have it disabled by setting
(lsp-bridge-enable-inlay-hint nil)
but it keeps enabling itself after waiting 5-10 seconds.The text was updated successfully, but these errors were encountered: