feat(minion): update espanso expansions #9

merged
opened by a.starrysky.fyi targeting main from private/minion/push-urqmnqooxzwy
  • As we've adopted josh, I've needed to type :work (the start of :workspace) a lot more than I was expecting
  • Coded often co-authors stuff with me and I'd like to type his credits easily
  • Speaking of which, I only made ways to add my own co-author credit but didn't make an easy way to type a blank trailer to credit someone else...
  • And finally, coded also uses the same companies email scheme, and I occasionally need to type his emails for administrative reasons...
Changed files
+12 -4
packetmix
homes
minion
+12 -4
packetmix/homes/minion/espanso.nix
··· 13 trigger = ":syst"; 14 replace = "sudo mount --bind /nix systemplate/nix"; 15 } 16 - { 17 - trigger = ":work"; 18 - replace = "Skyler Grey <skyler.grey@collabora.com>"; 19 - } 20 { 21 trigger = "SJIC"; 22 replace = "St John's Innovation Center"; ··· 89 regex = ''@(c\.|companies)''; 90 replace = "@companies.starrysky.fyi"; 91 } 92 { 93 regex = ''sky@a(?P<whitespace>\s)''; 94 replace = "sky@a.starrysky.fyi{{whitespace}}"; 95 } 96 { 97 trigger = ":co:me"; 98 replace = "Co-Authored-By: Skyler Grey <sky@a.starrysky.fyi>";
··· 13 trigger = ":syst"; 14 replace = "sudo mount --bind /nix systemplate/nix"; 15 } 16 { 17 trigger = "SJIC"; 18 replace = "St John's Innovation Center"; ··· 85 regex = ''@(c\.|companies)''; 86 replace = "@companies.starrysky.fyi"; 87 } 88 + { 89 + regex = ''@:co(c\.|companies)''; 90 + replace = "@companies.thecoded.prof"; 91 + } 92 { 93 regex = ''sky@a(?P<whitespace>\s)''; 94 replace = "sky@a.starrysky.fyi{{whitespace}}"; 95 } 96 + { 97 + trigger = ":co: "; 98 + replace = "Co-Authored-By: "; 99 + } 100 + { 101 + trigger = ":co:coded"; 102 + replace = "Co-Authored-By: Samuel Shuert <me@thecoded.prof>"; 103 + } 104 { 105 trigger = ":co:me"; 106 replace = "Co-Authored-By: Skyler Grey <sky@a.starrysky.fyi>";