From b13faec67c1a1aae4429352366bcb3c917d03f94 Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Mon, 8 Apr 2024 11:45:27 +0100 Subject: [PATCH] Replace dabbrev mode with hippie expand --- lisp/fg42/editor.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/fg42/editor.el b/lisp/fg42/editor.el index 085efd3..b071028 100644 --- a/lisp/fg42/editor.el +++ b/lisp/fg42/editor.el @@ -204,7 +204,6 @@ shipped with Emacs." :commands eglot :autoload eglot-ensure) - (use! flycheck "Flycheck is a modern on-the-fly syntax checking extension for GNU Emacs." :config (global-flycheck-mode)) @@ -241,6 +240,8 @@ shipped with Emacs." (setq tooltip-use-echo-area t) (setq x-gtk-use-system-tooltips nil) + ;; Switch from `dabbrev-expand' to `hippie-expand' + (global-set-key [remap dabbrev-expand] 'hippie-expand) ;; Global configurations (tool-bar-mode -1) (tooltip-mode nil)