Skip to content

Commit fac474b

Browse files
committed
chore: Remove unnecessary workarounds
1 parent a02e331 commit fac474b

File tree

1 file changed

+0
-32
lines changed

1 file changed

+0
-32
lines changed

spacemacs.org

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -762,43 +762,11 @@ The one and only one cheatsheet.
762762
(auth-source-pick-first-password :host "api.openai.com"))
763763
#+END_SRC
764764
** 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
779765
*** Workaround for the [[https://github.com/company-mode/company-mode/issues/383][bug]] where company-mode and evil-mode are conflicting
780766
#+BEGIN_SRC emacs-lisp :tangle user-config.el
781767
(evil-declare-change-repeat 'company-complete)
782768
#+END_SRC
783769

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-
802770
*** Enable doom-modeline-icons in gui and disable them in terminal
803771
#+BEGIN_SRC emacs-lisp :tangle user-config.el
804772
;; Enable doom-modeline-icons in gui and disable them in terminal

0 commit comments

Comments
 (0)