@@ -762,43 +762,11 @@ The one and only one cheatsheet.
762
762
(auth-source-pick-first-password :host "api.openai.com"))
763
763
#+END_SRC
764
764
** Workarounds
765
- *** Workaround to suppress a yas related [[https://github.com/syl20bnr/spacemacs/issues/12648][warning]]
766
- #+BEGIN_SRC emacs-lisp :tangle user-config.el
767
- (defvaralias 'helm-c-yas-space-match-any-greedy 'helm-yas-space-match-any-greedy
768
- "Temporary alias for Emacs27")
769
- #+END_SRC
770
- *** Workaround for the [[https://github.com/syl20bnr/spacemacs/issues/15281][bug]] where keybinding of the projectile-find-other-file is shadowed.
771
- #+BEGIN_SRC emacs-lisp :tangle user-config.el
772
- ;; (with-eval-after-load 'lsp-mode (define-key lsp-command-map-prefix "ga" 'projectile-find-other-file))
773
- #+END_SRC
774
- *** Workaround for the [[https://github.com/syl20bnr/spacemacs/issues/13100][bug]] where fuzzy matching is not used in recent files
775
- #+BEGIN_SRC emacs-lisp :tangle user-config.el
776
- (setq completion-styles `(basic partial-completion emacs22 initials
777
- ,(if (version<= emacs-version "27.0") 'helm-flex 'flex)))
778
- #+END_SRC
779
765
*** Workaround for the [[https://github.com/company-mode/company-mode/issues/383][bug]] where company-mode and evil-mode are conflicting
780
766
#+BEGIN_SRC emacs-lisp :tangle user-config.el
781
767
(evil-declare-change-repeat 'company-complete)
782
768
#+END_SRC
783
769
784
- *** Workaround for the [[https://github.com/syl20bnr/spacemacs/issues/10410][bug]] where evil search breaks spacemacs.
785
- #+BEGIN_SRC emacs-lisp :tangle user-config.el
786
- (defun kill-minibuffer ()
787
- (interactive)
788
- (when (windowp (active-minibuffer-window))
789
- (evil-ex-search-exit)))
790
- (add-hook 'mouse-leave-buffer-hook #'kill-minibuffer)
791
- #+END_SRC
792
-
793
- *** Setting part of a word to be bold, italics, underline, and strikethrough.
794
- The visualization in org-mode can be wrong, which needs a fix.
795
- #+BEGIN_SRC emacs-lisp :tangle user-config.el
796
- ;; This commented out because it messed up with org highlight
797
- ;; (setcar org-emphasis-regexp-components " \t('\"{[:alpha:]")
798
- ;; (setcar (nthcdr 1 org-emphasis-regexp-components) "[:alpha:]- \t.,:!?;'\")}\\")
799
- ;; (org-set-emph-re 'org-emphasis-regexp-components org-emphasis-regexp-components)
800
- #+END_SRC
801
-
802
770
*** Enable doom-modeline-icons in gui and disable them in terminal
803
771
#+BEGIN_SRC emacs-lisp :tangle user-config.el
804
772
;; Enable doom-modeline-icons in gui and disable them in terminal
0 commit comments