chore: use symbols instead of strings on position entries of each abbreviation
parent
ecd5d2c56f
commit
5d52361682
13
radio.scm
13
radio.scm
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue