chore: use symbols instead of strings on position entries of each abbreviation

pull/1/head
anemofilia 2023-09-25 01:02:28 -03:00
parent ecd5d2c56f
commit 5d52361682
No known key found for this signature in database
GPG Key ID: 5A8F3D62C87A2B33
1 changed files with 7 additions and 6 deletions

View File

@ -244,37 +244,37 @@
(list #|Quick access|# (list #|Quick access|#
(abbreviation (abbreviation
(name "@punk") (name "@punk")
(position "anywhere") (position 'anywhere)
(expansion (expansion
(format #f "~a/cpp/Punk" (format #f "~a/cpp/Punk"
code-projects))) code-projects)))
(abbreviation (abbreviation
(name "@guix") (name "@guix")
(position "anywhere") (position 'anywhere)
(expansion (expansion
(format #f "~a/scm/guix" (format #f "~a/scm/guix"
code-projects))) code-projects)))
(abbreviation (abbreviation
(name "@radix") (name "@radix")
(position "anywhere") (position 'anywhere)
(expansion (expansion
(format #f "~a/scm/radix" (format #f "~a/scm/radix"
code-projects))) code-projects)))
(abbreviation (abbreviation
(name "@files") (name "@files")
(position "anywhere") (position 'anywhere)
(expansion (expansion
(format #f "~a/scm/radix/files" (format #f "~a/scm/radix/files"
code-projects))) code-projects)))
(abbreviation (abbreviation
(name "@modules") (name "@modules")
(position "anywhere") (position 'anywhere)
(expansion (expansion
(format #f "~a/scm/radix/modules/radix" (format #f "~a/scm/radix/modules/radix"
code-projects))) code-projects)))
(abbreviation (abbreviation
(name "@research") (name "@research")
(position "anywhere") (position 'anywhere)
(expansion "$HOME/area/research")) (expansion "$HOME/area/research"))
#|Quick edit|# #|Quick edit|#
@ -317,6 +317,7 @@
(expansion "zcat % | $EDITOR")) (expansion "zcat % | $EDITOR"))
(abbreviation (abbreviation
(name "tf") (name "tf")
(position 'anywhere)
(expansion (expansion
"setsid -f %>/dev/null 2>&1 & disown")) "setsid -f %>/dev/null 2>&1 & disown"))
(abbreviation (abbreviation