Skip to content

Commit c76dc27

Browse files
committed
Update README
1 parent 32a8bcf commit c76dc27

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

README.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
* Projectile Variable
22

3-
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]].
3+
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]].
44

55
#+BEGIN_SRC emacs-lisp
66
(projectile-variable-put 'foo-value 2) ;; Store property 'foo-value

projectile-variable.el

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,14 @@
2626

2727
;;; Commentary:
2828

29-
;; Store project local variables (property).
29+
;; Store project local variables (property) using Projectile and Symbol Plists.
30+
;;
31+
;; - https://github.com/bbatsov/projectile
32+
;; - https://www.gnu.org/software/emacs/manual/html_node/elisp/Symbol-Plists.html
3033

3134
;; (projectile-variable-put 'foo-value 2) ;; Store property
3235
;; (projectile-variable-get 'foo-value) ;;=> 2
33-
36+
;;
3437
;; (projectile-variable-plist) ;; Return all project local property list
3538
;; (projectile-variable-plist "foo-") ;; Return project local property list filterd by prefix "foo-"
3639
;; (projectile-variable-alist) ;; Return all project local properties as association list (alist)

0 commit comments

Comments
 (0)