You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Store project local variables (property) using [[https://github.com/bbatsov/projectile][projectile]] and [[https://www.gnu.org/software/emacs/manual/html_node/elisp/Symbol-Plists.html][Symbol Plists]].
4
+
5
+
#+BEGIN_SRC emacs-lisp
6
+
(projectile-variable-put 'foo-value 2) ;; Store property 'foo-value
7
+
(projectile-variable-get 'foo-value) ;;=> 2
8
+
9
+
;; Return all project local property list
10
+
(projectile-variable-plist)
11
+
;; Return project local property list filterd by prefix "foo-"
12
+
(projectile-variable-plist "foo-")
13
+
;; Return all project local properties as association list (alist)
14
+
(projectile-variable-alist)
15
+
;; Return project local properties alist filterd by prefix "foo-"
0 commit comments