-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.plist
More file actions
1176 lines (1142 loc) · 30.4 KB
/
Copy pathinfo.plist
File metadata and controls
1176 lines (1142 loc) · 30.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>bundleid</key>
<string>karutt.alfred.VSCodeSnippetManager</string>
<key>category</key>
<string>Tools</string>
<key>connections</key>
<dict>
<key>002A09E8-C671-4AB7-97B6-0DF500E8E87A</key>
<array>
<dict>
<key>destinationuid</key>
<string>F95DB1A0-ADD8-4655-8FE2-A8B1F172CF98</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>071F9E61-8FDA-4B87-B130-F25366829B0A</key>
<array>
<dict>
<key>destinationuid</key>
<string>7587BB49-B542-4675-B29F-4FF303161C4B</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>243580AD-5C4F-4626-B7E9-8C0D9ABCB9EB</key>
<array>
<dict>
<key>destinationuid</key>
<string>BE8BBCE7-7410-4D3F-A4D3-23E9E9FE3F71</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>649A21EB-F639-4451-96D5-24411254F9B7</key>
<array>
<dict>
<key>destinationuid</key>
<string>0BCF5C28-F9E0-4FD1-81A8-3F4802D7410A</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>71E9DB58-DAF6-4E42-A2C7-A0416E2BF197</key>
<array>
<dict>
<key>destinationuid</key>
<string>002A09E8-C671-4AB7-97B6-0DF500E8E87A</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>7587BB49-B542-4675-B29F-4FF303161C4B</key>
<array>
<dict>
<key>destinationuid</key>
<string>EFB3DE69-44D6-4D2A-8F79-55C985287EEC</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>8C88FA29-3FA8-4F6B-8F6A-DE9431FD8304</key>
<array>
<dict>
<key>destinationuid</key>
<string>E974B089-2045-4040-9F76-D225276D5D81</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>9771A3D9-3B47-4543-983B-F15003B026DE</key>
<array>
<dict>
<key>destinationuid</key>
<string>649A21EB-F639-4451-96D5-24411254F9B7</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>BE8BBCE7-7410-4D3F-A4D3-23E9E9FE3F71</key>
<array>
<dict>
<key>destinationuid</key>
<string>8C88FA29-3FA8-4F6B-8F6A-DE9431FD8304</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>D23A4FE1-3EAD-420A-BA7B-738E9CA37242</key>
<array>
<dict>
<key>destinationuid</key>
<string>9771A3D9-3B47-4543-983B-F15003B026DE</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>E788CB5E-D0C7-4311-B9A4-4651A8990A66</key>
<array>
<dict>
<key>destinationuid</key>
<string>71E9DB58-DAF6-4E42-A2C7-A0416E2BF197</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>ED2F81F8-8DFC-4A48-AF44-F79FFA8CFCB8</key>
<array/>
<key>EFB3DE69-44D6-4D2A-8F79-55C985287EEC</key>
<array>
<dict>
<key>destinationuid</key>
<string>ED2F81F8-8DFC-4A48-AF44-F79FFA8CFCB8</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>FA86FB1C-CEEB-4195-A1B8-53D0B26DAC67</key>
<array>
<dict>
<key>destinationuid</key>
<string>D23A4FE1-3EAD-420A-BA7B-738E9CA37242</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
</dict>
<key>createdby</key>
<string>karutt</string>
<key>description</key>
<string>VSCodeSnippetManager is a workflow that allows you to easily register snippets in VSCode. It writes text from the clipboard into a JSON file for snippets, enabling you to select a language and specify a prefix as arguments.</string>
<key>disabled</key>
<false/>
<key>name</key>
<string>VSCodeSnippetManager</string>
<key>objects</key>
<array>
<dict>
<key>config</key>
<dict>
<key>behaviour</key>
<integer>2</integer>
<key>fontmode</key>
<integer>0</integer>
<key>fontsizing</key>
<integer>0</integer>
<key>footertext</key>
<string></string>
<key>inputfile</key>
<string>src/js/creat_text_view</string>
<key>inputtype</key>
<integer>1</integer>
<key>loadingtext</key>
<string></string>
<key>outputmode</key>
<integer>0</integer>
<key>scriptinput</key>
<integer>1</integer>
<key>spellchecking</key>
<integer>0</integer>
<key>stackview</key>
<false/>
</dict>
<key>type</key>
<string>alfred.workflow.userinterface.text</string>
<key>uid</key>
<string>8C88FA29-3FA8-4F6B-8F6A-DE9431FD8304</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>concurrently</key>
<false/>
<key>escaping</key>
<integer>102</integer>
<key>script</key>
<string>"$python_path" src/py/snippet_crud.py</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
<string></string>
<key>type</key>
<integer>11</integer>
</dict>
<key>type</key>
<string>alfred.workflow.action.script</string>
<key>uid</key>
<string>E974B089-2045-4040-9F76-D225276D5D81</string>
<key>version</key>
<integer>2</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>alfredfiltersresults</key>
<false/>
<key>alfredfiltersresultsmatchmode</key>
<integer>0</integer>
<key>argumenttreatemptyqueryasnil</key>
<true/>
<key>argumenttrimmode</key>
<integer>0</integer>
<key>argumenttype</key>
<integer>1</integer>
<key>escaping</key>
<integer>102</integer>
<key>keyword</key>
<string>{var:create_kwd}</string>
<key>queuedelaycustom</key>
<integer>3</integer>
<key>queuedelayimmediatelyinitially</key>
<true/>
<key>queuedelaymode</key>
<integer>0</integer>
<key>queuemode</key>
<integer>1</integer>
<key>runningsubtext</key>
<string></string>
<key>script</key>
<string>#!/bin/bash
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/homebrew/bin"
SCRIPT_PATH="src/py/language_filter.py"
if PYTHON_PATH=$(command -v python3); then
python3 "$SCRIPT_PATH" create "$PYTHON_PATH" "$1"
exit 0
fi
if PYTHON_PATH=$(command -v python); then
PYTHON_VERSION=$(python -c 'import sys; print(sys.version_info[0])')
if [ "$PYTHON_VERSION" -eq 3 ]; then
python "$SCRIPT_PATH" create "$PYTHON_PATH" "$1"
exit 0
fi
fi
echo "Python 3 is not installed. Please install Python 3." >&2
exit 1
</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
<string></string>
<key>subtext</key>
<string></string>
<key>title</key>
<string>Snippet Create</string>
<key>type</key>
<integer>11</integer>
<key>withspace</key>
<true/>
</dict>
<key>type</key>
<string>alfred.workflow.input.scriptfilter</string>
<key>uid</key>
<string>243580AD-5C4F-4626-B7E9-8C0D9ABCB9EB</string>
<key>version</key>
<integer>3</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>argument</key>
<string>{query}</string>
<key>passthroughargument</key>
<false/>
<key>variables</key>
<dict>
<key>code</key>
<string>{clipboard:0}</string>
</dict>
</dict>
<key>type</key>
<string>alfred.workflow.utility.argument</string>
<key>uid</key>
<string>BE8BBCE7-7410-4D3F-A4D3-23E9E9FE3F71</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>autopaste</key>
<true/>
<key>clipboardtext</key>
<string>{query}</string>
<key>ignoredynamicplaceholders</key>
<false/>
<key>transient</key>
<false/>
</dict>
<key>type</key>
<string>alfred.workflow.output.clipboard</string>
<key>uid</key>
<string>F95DB1A0-ADD8-4655-8FE2-A8B1F172CF98</string>
<key>version</key>
<integer>3</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>alfredfiltersresults</key>
<false/>
<key>alfredfiltersresultsmatchmode</key>
<integer>0</integer>
<key>argumenttreatemptyqueryasnil</key>
<true/>
<key>argumenttrimmode</key>
<integer>0</integer>
<key>argumenttype</key>
<integer>1</integer>
<key>escaping</key>
<integer>102</integer>
<key>queuedelaycustom</key>
<integer>3</integer>
<key>queuedelayimmediatelyinitially</key>
<true/>
<key>queuedelaymode</key>
<integer>0</integer>
<key>queuemode</key>
<integer>1</integer>
<key>runningsubtext</key>
<string></string>
<key>script</key>
<string>"$python_path" src/py/key_filter.py $1</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
<string></string>
<key>subtext</key>
<string></string>
<key>title</key>
<string></string>
<key>type</key>
<integer>11</integer>
<key>withspace</key>
<true/>
</dict>
<key>type</key>
<string>alfred.workflow.input.scriptfilter</string>
<key>uid</key>
<string>71E9DB58-DAF6-4E42-A2C7-A0416E2BF197</string>
<key>version</key>
<integer>3</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>concurrently</key>
<false/>
<key>escaping</key>
<integer>102</integer>
<key>script</key>
<string>"$python_path" src/py/snippet_crud.py</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
<string></string>
<key>type</key>
<integer>11</integer>
</dict>
<key>type</key>
<string>alfred.workflow.action.script</string>
<key>uid</key>
<string>002A09E8-C671-4AB7-97B6-0DF500E8E87A</string>
<key>version</key>
<integer>2</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>alfredfiltersresults</key>
<false/>
<key>alfredfiltersresultsmatchmode</key>
<integer>0</integer>
<key>argumenttreatemptyqueryasnil</key>
<true/>
<key>argumenttrimmode</key>
<integer>0</integer>
<key>argumenttype</key>
<integer>1</integer>
<key>escaping</key>
<integer>102</integer>
<key>keyword</key>
<string>{var:read_kwd}</string>
<key>queuedelaycustom</key>
<integer>3</integer>
<key>queuedelayimmediatelyinitially</key>
<true/>
<key>queuedelaymode</key>
<integer>0</integer>
<key>queuemode</key>
<integer>1</integer>
<key>runningsubtext</key>
<string></string>
<key>script</key>
<string>#!/bin/bash
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/homebrew/bin"
SCRIPT_PATH="src/py/language_filter.py"
if PYTHON_PATH=$(command -v python3); then
python3 "$SCRIPT_PATH" read "$PYTHON_PATH" "$1"
exit 0
fi
if PYTHON_PATH=$(command -v python); then
PYTHON_VERSION=$(python -c 'import sys; print(sys.version_info[0])')
if [ "$PYTHON_VERSION" -eq 3 ]; then
python "$SCRIPT_PATH" read "$PYTHON_PATH" "$1"
exit 0
fi
fi
echo "Python 3 is not installed. Please install Python 3." >&2
exit 1
</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
<string></string>
<key>subtext</key>
<string></string>
<key>title</key>
<string>Snippet read</string>
<key>type</key>
<integer>11</integer>
<key>withspace</key>
<true/>
</dict>
<key>type</key>
<string>alfred.workflow.input.scriptfilter</string>
<key>uid</key>
<string>E788CB5E-D0C7-4311-B9A4-4651A8990A66</string>
<key>version</key>
<integer>3</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>alfredfiltersresults</key>
<false/>
<key>alfredfiltersresultsmatchmode</key>
<integer>0</integer>
<key>argumenttreatemptyqueryasnil</key>
<true/>
<key>argumenttrimmode</key>
<integer>0</integer>
<key>argumenttype</key>
<integer>1</integer>
<key>escaping</key>
<integer>102</integer>
<key>keyword</key>
<string>{var:update_kwd}</string>
<key>queuedelaycustom</key>
<integer>3</integer>
<key>queuedelayimmediatelyinitially</key>
<true/>
<key>queuedelaymode</key>
<integer>0</integer>
<key>queuemode</key>
<integer>1</integer>
<key>runningsubtext</key>
<string></string>
<key>script</key>
<string>#!/bin/bash
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/homebrew/bin"
SCRIPT_PATH="src/py/language_filter.py"
if PYTHON_PATH=$(command -v python3); then
python3 "$SCRIPT_PATH" update "$PYTHON_PATH" "$1"
exit 0
fi
if PYTHON_PATH=$(command -v python); then
PYTHON_VERSION=$(python -c 'import sys; print(sys.version_info[0])')
if [ "$PYTHON_VERSION" -eq 3 ]; then
python "$SCRIPT_PATH" update "$PYTHON_PATH" "$1"
exit 0
fi
fi
echo "Python 3 is not installed. Please install Python 3." >&2
exit 1
</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
<string></string>
<key>subtext</key>
<string></string>
<key>title</key>
<string>Snippet update</string>
<key>type</key>
<integer>11</integer>
<key>withspace</key>
<true/>
</dict>
<key>type</key>
<string>alfred.workflow.input.scriptfilter</string>
<key>uid</key>
<string>FA86FB1C-CEEB-4195-A1B8-53D0B26DAC67</string>
<key>version</key>
<integer>3</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>concurrently</key>
<false/>
<key>escaping</key>
<integer>102</integer>
<key>script</key>
<string>"$python_path" src/py/snippet_crud.py</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
<string></string>
<key>type</key>
<integer>11</integer>
</dict>
<key>type</key>
<string>alfred.workflow.action.script</string>
<key>uid</key>
<string>0BCF5C28-F9E0-4FD1-81A8-3F4802D7410A</string>
<key>version</key>
<integer>2</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>alfredfiltersresults</key>
<false/>
<key>alfredfiltersresultsmatchmode</key>
<integer>0</integer>
<key>argumenttreatemptyqueryasnil</key>
<true/>
<key>argumenttrimmode</key>
<integer>0</integer>
<key>argumenttype</key>
<integer>1</integer>
<key>escaping</key>
<integer>102</integer>
<key>queuedelaycustom</key>
<integer>3</integer>
<key>queuedelayimmediatelyinitially</key>
<true/>
<key>queuedelaymode</key>
<integer>0</integer>
<key>queuemode</key>
<integer>1</integer>
<key>runningsubtext</key>
<string></string>
<key>script</key>
<string>"$python_path" src/py/key_filter.py $1</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
<string></string>
<key>subtext</key>
<string></string>
<key>title</key>
<string></string>
<key>type</key>
<integer>11</integer>
<key>withspace</key>
<true/>
</dict>
<key>type</key>
<string>alfred.workflow.input.scriptfilter</string>
<key>uid</key>
<string>9771A3D9-3B47-4543-983B-F15003B026DE</string>
<key>version</key>
<integer>3</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>behaviour</key>
<integer>2</integer>
<key>fontmode</key>
<integer>0</integer>
<key>fontsizing</key>
<integer>0</integer>
<key>footertext</key>
<string></string>
<key>inputfile</key>
<string>src/js/update_or_delete_text_view</string>
<key>inputtype</key>
<integer>1</integer>
<key>loadingtext</key>
<string></string>
<key>outputmode</key>
<integer>0</integer>
<key>scriptinput</key>
<integer>1</integer>
<key>spellchecking</key>
<integer>0</integer>
<key>stackview</key>
<false/>
</dict>
<key>type</key>
<string>alfred.workflow.userinterface.text</string>
<key>uid</key>
<string>649A21EB-F639-4451-96D5-24411254F9B7</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>argument</key>
<string>{query}</string>
<key>passthroughargument</key>
<false/>
<key>variables</key>
<dict>
<key>code</key>
<string>{clipboard:0}</string>
</dict>
</dict>
<key>type</key>
<string>alfred.workflow.utility.argument</string>
<key>uid</key>
<string>D23A4FE1-3EAD-420A-BA7B-738E9CA37242</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>alfredfiltersresults</key>
<false/>
<key>alfredfiltersresultsmatchmode</key>
<integer>0</integer>
<key>argumenttreatemptyqueryasnil</key>
<true/>
<key>argumenttrimmode</key>
<integer>0</integer>
<key>argumenttype</key>
<integer>1</integer>
<key>escaping</key>
<integer>102</integer>
<key>queuedelaycustom</key>
<integer>3</integer>
<key>queuedelayimmediatelyinitially</key>
<true/>
<key>queuedelaymode</key>
<integer>0</integer>
<key>queuemode</key>
<integer>1</integer>
<key>runningsubtext</key>
<string></string>
<key>script</key>
<string>"$python_path" src/py/key_filter.py $1</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
<string></string>
<key>subtext</key>
<string></string>
<key>title</key>
<string></string>
<key>type</key>
<integer>11</integer>
<key>withspace</key>
<true/>
</dict>
<key>type</key>
<string>alfred.workflow.input.scriptfilter</string>
<key>uid</key>
<string>7587BB49-B542-4675-B29F-4FF303161C4B</string>
<key>version</key>
<integer>3</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>alfredfiltersresults</key>
<false/>
<key>alfredfiltersresultsmatchmode</key>
<integer>0</integer>
<key>argumenttreatemptyqueryasnil</key>
<true/>
<key>argumenttrimmode</key>
<integer>0</integer>
<key>argumenttype</key>
<integer>1</integer>
<key>escaping</key>
<integer>102</integer>
<key>keyword</key>
<string>{var:delete_kwd}</string>
<key>queuedelaycustom</key>
<integer>3</integer>
<key>queuedelayimmediatelyinitially</key>
<true/>
<key>queuedelaymode</key>
<integer>0</integer>
<key>queuemode</key>
<integer>1</integer>
<key>runningsubtext</key>
<string></string>
<key>script</key>
<string>#!/bin/bash
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/homebrew/bin"
SCRIPT_PATH="src/py/language_filter.py"
if PYTHON_PATH=$(command -v python3); then
python3 "$SCRIPT_PATH" delete "$PYTHON_PATH" "$1"
exit 0
fi
if PYTHON_PATH=$(command -v python); then
PYTHON_VERSION=$(python -c 'import sys; print(sys.version_info[0])')
if [ "$PYTHON_VERSION" -eq 3 ]; then
python "$SCRIPT_PATH" delete "$PYTHON_PATH" "$1"
exit 0
fi
fi
echo "Python 3 is not installed. Please install Python 3." >&2
exit 1
</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
<string></string>
<key>subtext</key>
<string></string>
<key>title</key>
<string>Snippet delete</string>
<key>type</key>
<integer>11</integer>
<key>withspace</key>
<true/>
</dict>
<key>type</key>
<string>alfred.workflow.input.scriptfilter</string>
<key>uid</key>
<string>071F9E61-8FDA-4B87-B130-F25366829B0A</string>
<key>version</key>
<integer>3</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>concurrently</key>
<false/>
<key>escaping</key>
<integer>102</integer>
<key>script</key>
<string>"$python_path" src/py/snippet_crud.py</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
<string></string>
<key>type</key>
<integer>11</integer>
</dict>
<key>type</key>
<string>alfred.workflow.action.script</string>
<key>uid</key>
<string>ED2F81F8-8DFC-4A48-AF44-F79FFA8CFCB8</string>
<key>version</key>
<integer>2</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>behaviour</key>
<integer>2</integer>
<key>fontmode</key>
<integer>0</integer>
<key>fontsizing</key>
<integer>0</integer>
<key>footertext</key>
<string></string>
<key>inputfile</key>
<string>src/js/update_or_delete_text_view</string>
<key>inputtype</key>
<integer>1</integer>
<key>loadingtext</key>
<string></string>
<key>outputmode</key>
<integer>0</integer>
<key>scriptinput</key>
<integer>1</integer>
<key>spellchecking</key>
<integer>0</integer>
<key>stackview</key>
<false/>
</dict>
<key>type</key>
<string>alfred.workflow.userinterface.text</string>
<key>uid</key>
<string>EFB3DE69-44D6-4D2A-8F79-55C985287EEC</string>
<key>version</key>
<integer>1</integer>
</dict>
</array>
<key>readme</key>
<string># VSCodeSnippetManager
[GitHub Repository](https://github.com/karutt/VSCodeSnippetManager)
Easily manage your Visual Studio Code (VSCode) snippets directly from Alfred without having to switch between apps. With this workflow, you can seamlessly create, read, update, and delete your snippets without leaving Alfred.
## Features
- **CRUD Operations**: Manage VSCode snippets through simple commands that enable you to create, read, update, and delete snippets effortlessly.
- **Clipboard Integration**: Quickly register text from your clipboard as a VSCode snippet.
- **Customizable Keywords**: The default keywords are `snc` (Create), `snr` (Read), `snu` (Update), and `snd` (Delete), but you can easily modify them through the Configuration Builder to suit your preference.
> **Note**: This workflow directly manipulates the JSON files of your VSCode snippets. Any comments in these files will be removed when the workflow modifies them. If you want to preserve comments, consider adding them as JSON elements or refrain from using this workflow.
## Installation
1. Download the workflow:
* [GitHub Releases](https://github.com/karutt/VSCodeSnippetManager/releases/tag/alfred)
2. Double-click the downloaded workflow file and follow the prompts to install it in Alfred.
3. **Configure Environment Variables (if needed)**:
- **VSCode Snippet Directory**:
- Ensure that the environment variable `vscode_snippets_dir` points to your VSCode snippets directory.
- By default, this path is set to:
```
~/Library/Application Support/Code/User/snippets/
```
- If the default path does not work for your setup, find your own VSCode snippets directory and update the environment variable accordingly.
## Usage
Follow these steps to perform basic operations:
1. **Input Keywords**:
- Open Alfred and type the default keywords (`snc`, `snr`, `snu`, `snd`), followed by a space and the language of your snippet.
- Example: `snc python` (Create a Python snippet)
2. **Select the Language**:
- After typing the keyword and a space, choose the programming language for which you want to manage snippets.
### 1. Create Snippet
- **Steps**:
1. Copy the code you want to register as a snippet to your clipboard.
2. Open Alfred, type the keyword `snc` followed by the language, and choose the language from the suggestions.
3. Enter the prefix for the snippet.
4. The script will register the clipboard content as a new snippet in VSCode.
### 2. Read Snippet
- **Steps**:
1. Open Alfred, type the keyword `snr` followed by the language, and choose the language from the suggestions.
2. Select the snippet prefix from the list to read its content.
3. The selected snippet will be copied to your clipboard, and if a text editor is active, it will be pasted automatically.
### 3. Update Snippet
- **Steps**:
1. Copy the updated code to your clipboard.
2. Open Alfred, type the keyword `snu` followed by the language, and choose the language from the suggestions.
3. Select the prefix of the snippet you want to update.
4. The existing snippet will be updated with the new clipboard content.
### 4. Delete Snippet
- **Steps**:
1. Open Alfred, type the keyword `snd` followed by the language, and choose the language from the suggestions.
2. Select the prefix of the snippet you want to delete.
3. The script will remove the selected snippet from your VSCode snippet file.
## Troubleshooting
- **Snippet is not being registered**:
- Make sure that the `vscode_snippets_dir` environment variable is set correctly.
- Verify that you have read/write permissions for the snippet directory.
- **Alfred is not responding**:
- Restart Alfred to ensure it has loaded the workflow correctly.
- Check that the workflow is enabled in Alfred's settings.
- **Still having issues?**:
- Use the workflow's debug mode to see detailed script outputs.
- Based on the debug information, you can take the appropriate action or reach out with a comment if you need further assistance.</string>
<key>uidata</key>
<dict>
<key>002A09E8-C671-4AB7-97B6-0DF500E8E87A</key>
<dict>
<key>xpos</key>
<real>540</real>
<key>ypos</key>
<real>390</real>
</dict>
<key>071F9E61-8FDA-4B87-B130-F25366829B0A</key>
<dict>
<key>xpos</key>
<real>105</real>
<key>ypos</key>
<real>655</real>
</dict>
<key>0BCF5C28-F9E0-4FD1-81A8-3F4802D7410A</key>
<dict>
<key>xpos</key>
<real>705</real>
<key>ypos</key>
<real>520</real>
</dict>
<key>243580AD-5C4F-4626-B7E9-8C0D9ABCB9EB</key>
<dict>
<key>xpos</key>
<real>100</real>
<key>ypos</key>
<real>265</real>
</dict>
<key>649A21EB-F639-4451-96D5-24411254F9B7</key>
<dict>
<key>xpos</key>
<real>540</real>
<key>ypos</key>
<real>520</real>
</dict>
<key>71E9DB58-DAF6-4E42-A2C7-A0416E2BF197</key>
<dict>
<key>xpos</key>
<real>370</real>
<key>ypos</key>
<real>390</real>
</dict>
<key>7587BB49-B542-4675-B29F-4FF303161C4B</key>
<dict>
<key>xpos</key>
<real>370</real>
<key>ypos</key>
<real>655</real>
</dict>
<key>8C88FA29-3FA8-4F6B-8F6A-DE9431FD8304</key>
<dict>
<key>xpos</key>
<real>370</real>
<key>ypos</key>
<real>265</real>
</dict>
<key>9771A3D9-3B47-4543-983B-F15003B026DE</key>
<dict>
<key>xpos</key>
<real>370</real>