fix: use : instead of @ in abbreviations used to acess bookmarks files

pull/1/head
anemofilia 2023-10-08 14:29:25 -03:00
parent fc28824e75
commit f69fcefc23
No known key found for this signature in database
GPG Key ID: 5A8F3D62C87A2B33
1 changed files with 2 additions and 2 deletions

View File

@ -310,12 +310,12 @@
code-projects))) code-projects)))
(abbreviation (abbreviation
(name ":todo") (name ":todo")
(expansion (format #f "~a/todo" organization))) (expansion "~/areas/organization/todo"))
(abbreviation (abbreviation
(name ":bookmark") (name ":bookmark")
(position 'anywhere) (position 'anywhere)
(pattern (pattern
(apply format #f "@(~a~@{|~a~})" bookmarks)) (apply format #f ":(~a~@{|~a~})" bookmarks))
(expansion (expansion
(fish-function "bookmarks"))) (fish-function "bookmarks")))