From 5d5236168206cbef5e4fba1e9a53fd2b0bc4cd0f Mon Sep 17 00:00:00 2001 From: anemofilia Date: Mon, 25 Sep 2023 01:02:28 -0300 Subject: [PATCH] chore: use symbols instead of strings on position entries of each abbreviation --- radio.scm | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/radio.scm b/radio.scm index 77b6af0..693ae4d 100644 --- a/radio.scm +++ b/radio.scm @@ -244,37 +244,37 @@ (list #|Quick access|# (abbreviation (name "@punk") - (position "anywhere") + (position 'anywhere) (expansion (format #f "~a/cpp/Punk" code-projects))) (abbreviation (name "@guix") - (position "anywhere") + (position 'anywhere) (expansion (format #f "~a/scm/guix" code-projects))) (abbreviation (name "@radix") - (position "anywhere") + (position 'anywhere) (expansion (format #f "~a/scm/radix" code-projects))) (abbreviation (name "@files") - (position "anywhere") + (position 'anywhere) (expansion (format #f "~a/scm/radix/files" code-projects))) (abbreviation (name "@modules") - (position "anywhere") + (position 'anywhere) (expansion (format #f "~a/scm/radix/modules/radix" code-projects))) (abbreviation (name "@research") - (position "anywhere") + (position 'anywhere) (expansion "$HOME/area/research")) #|Quick edit|# @@ -317,6 +317,7 @@ (expansion "zcat % | $EDITOR")) (abbreviation (name "tf") + (position 'anywhere) (expansion "setsid -f %>/dev/null 2>&1 & disown")) (abbreviation