From 0478315d102c7804cf9068b87d4ff222685679e5 Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 3 Aug 2020 03:14:34 +0200 Subject: [PATCH] Emacs: Remove safe-mark from projectile-enable-caching. Not needed anymore. --- init.d/programming/common.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/init.d/programming/common.el b/init.d/programming/common.el index cf0a7d7..d9e9d37 100644 --- a/init.d/programming/common.el +++ b/init.d/programming/common.el @@ -1,6 +1,6 @@ ;;; common.el --- Common programming settings. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-08-03T02:56:38+0200> +;; Time-stamp: <2020-08-03T03:08:03+0200> ;;; Commentary: @@ -147,7 +147,6 @@ collapse other projects." -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DWITH_TESTS=YES ..") (projectile-completion-system 'ivy) (projectile-indexing-method 'hybrid) ; Allow filtering. - ;; (projectile-enable-caching t) (projectile-globally-ignored-file-suffixes '("~"))) :config (progn (setq projectile-project-compilation-cmd @@ -159,7 +158,6 @@ collapse other projects." 'safe-local-variable #'stringp) (put 'projectile-project-configure-cmd 'safe-local-variable #'stringp) - (put 'projectile-enable-caching 'safe-local-variable #'booleanp) ;; Auto-search for projects. (if (f-directory? "~/Projekte") (setq projectile-project-search-path '("~/Projekte"))))