-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtags
5828 lines (5828 loc) · 908 KB
/
tags
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
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_OUTPUT_EXCMD mixed /number, pattern, mixed, or combineV2/
!_TAG_OUTPUT_FILESEP slash /slash or backslash/
!_TAG_OUTPUT_MODE u-ctags /u-ctags or e-ctags/
!_TAG_PATTERN_LENGTH_LIMIT 96 /0 for no limit/
!_TAG_PROC_CWD /Users/tomasztrebski/dev/dotfiles/ //
!_TAG_PROGRAM_AUTHOR Universal Ctags Team //
!_TAG_PROGRAM_NAME Universal Ctags /Derived from Exuberant Ctags/
!_TAG_PROGRAM_URL https://ctags.io/ /official site/
!_TAG_PROGRAM_VERSION 5.9.0 //
# config/nvim/plugins.vim /^ map # <Plug>(incsearch-nohl-#)$/;" m line:239 language:Vim
# Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI) dotbot/README.md /^# Dotbot [![Build Status](https:\/\/github.com\/anishathalye\/dotbot\/workflows\/CI\/badge.svg)]/;" h line:1 language:Markdown
# dotfiles README.md /^# dotfiles$/;" h line:3 language:Markdown
# nvim config/nvim/README.md /^# nvim$/;" h line:1 language:Markdown
# optional, adding menu-bar support: dotbot/test/README.md /^# optional, adding menu-bar support:$/;" h line:37 language:Markdown
## Command-line Arguments dotbot/README.md /^## Command-line Arguments$/;" h line:433 language:Markdown
## Configuration dotbot/README.md /^## Configuration$/;" h line:131 language:Markdown
## Content (roughly) README.md /^## Content (roughly)$/;" h line:7 language:Markdown
## Contributing dotbot/README.md /^## Contributing$/;" h line:455 language:Markdown
## Directives dotbot/README.md /^## Directives$/;" h line:154 language:Markdown
## Getting Started dotbot/README.md /^## Getting Started$/;" h line:33 language:Markdown
## Inspirations / credits README.md /^## Inspirations \/ credits $/;" h line:54 language:Markdown
## License dotbot/README.md /^## License$/;" h line:460 language:Markdown
## Most notable README.md /^## Most notable$/;" h line:30 language:Markdown
## Rationale dotbot/README.md /^## Rationale$/;" h line:16 language:Markdown
## Wiki dotbot/README.md /^## Wiki$/;" h line:450 language:Markdown
### Awesome upgrade binary README.md /^### Awesome upgrade binary$/;" h line:32 language:Markdown
### CI system README.md /^### CI system$/;" h line:49 language:Markdown
### Clean dotbot/README.md /^### Clean$/;" h line:359 language:Markdown
### Create dotbot/README.md /^### Create$/;" h line:277 language:Markdown
### Debian-based distributions dotbot/test/README.md /^### Debian-based distributions$/;" h line:23 language:Markdown
### Defaults dotbot/README.md /^### Defaults$/;" h line:392 language:Markdown
### Full Example dotbot/README.md /^### Full Example$/;" h line:101 language:Markdown
### Integrate with Existing Dotfiles dotbot/README.md /^### Integrate with Existing Dotfiles$/;" h line:42 language:Markdown
### Link dotbot/README.md /^### Link$/;" h line:159 language:Markdown
### Plugins dotbot/README.md /^### Plugins$/;" h line:416 language:Markdown
### Shell dotbot/README.md /^### Shell$/;" h line:311 language:Markdown
### Starting Fresh? dotbot/README.md /^### Starting Fresh?$/;" h line:35 language:Markdown
### `--except` dotbot/README.md /^### `--except`$/;" h line:444 language:Markdown
### `--only` dotbot/README.md /^### `--only`$/;" h line:439 language:Markdown
### macOS dotbot/test/README.md /^### macOS$/;" h line:29 language:Markdown
#### Example dotbot/README.md /^#### Example$/;" h line:202 language:Markdown
#### Example dotbot/README.md /^#### Example$/;" h line:299 language:Markdown
#### Example dotbot/README.md /^#### Example$/;" h line:342 language:Markdown
#### Example dotbot/README.md /^#### Example$/;" h line:380 language:Markdown
#### Example dotbot/README.md /^#### Example$/;" h line:407 language:Markdown
#### Format dotbot/README.md /^#### Format$/;" h line:165 language:Markdown
#### Format dotbot/README.md /^#### Format$/;" h line:283 language:Markdown
#### Format dotbot/README.md /^#### Format$/;" h line:316 language:Markdown
#### Format dotbot/README.md /^#### Format$/;" h line:366 language:Markdown
#### Format dotbot/README.md /^#### Format$/;" h line:402 language:Markdown
#18098 config/nvim/undodir/%Users%tomasztrebski%dev%aws-cdk%CHANGELOG.md /^VimŸUnDoå* **secretsmanager:** create secrets with specified values ([#18098](https:\/\/github.c/;" l line:1 language:Markdown
* config/nvim/plugins.vim /^ map * <Plug>(incsearch-nohl-*)$/;" m line:238 language:Vim
.gitmodules README.md /^ - all of the plugins controlled via [.gitmodules](.\/.gitmodules)$/;" l line:13 language:Markdown
.gitmodules README.md /^ - all of the plugins controlled via [.gitmodules](.\/.gitmodules)$/;" l line:16 language:Markdown
.gitmodules README.md /^ - all of the plugins controlled via [.gitmodules](.\/.gitmodules)$/;" l line:19 language:Markdown
/ config/nvim/plugins.vim /^ map \/ <Plug>(incsearch-forward)$/;" m line:227 language:Vim
0 Brewfile.lock.json /^ "HEAD"$/;" s line:1529 language:JSON array:entries.brew.luajit.options.args
0 Brewfile.lock.json /^ "HEAD"$/;" s line:1583 language:JSON array:entries.brew.neovim.options.args
0 config/iterm.json /^ "rlogin",$/;" s line:44 language:JSON array:Jobs to Ignore
0 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-cornerstone%aypipelinecornerstoneaycfurlsignerD3EF0A32.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" o line:1 language:JSON
0 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-production%aypipelineproductionaycanaries774F0E7D.template.json /^VimŸUnDoå ] }, ] ] ] }, ] [ /;" o line:1 language:JSON
0 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-production%aypipelineproductionaycfurlsigner098095E9.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" o line:1 language:JSON
0 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-production%aypipelineproductionayemailsD32C58D2.template.json /^VimŸUnDoå } } "", }, { } ], "", /;" o line:1 language:JSON
0 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-production%aypipelineproductionaymonolith282D9881.template.json /^‡è ] }, ] "", }, }, [ ] ] /;" o line:2 language:JSON
0 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-production%aypipelineproductionaystorageD7E62D1E.template.json /^VimŸUnDoålß_ÒƒÝôctºž2NðªZœ }, ] }, ] ] ] /;" o line:1 language:JSON
0 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-sharma%aypipelinesharmaaystorage36FA2E82.template.json /^VimŸUnDoåetEncryption": {es": [ockConfiguration": {uto-delete-objects",harma\/ay-storage\/Access/;" o line:1 language:JSON
0 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-staging%aypipelinestagingaycdn179B3E2A.template.json /^VimŸUnDoå } }, ] "\/" ] }, ] [ /;" o line:1 language:JSON
0 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-staging%aypipelinestagingaymasterencryptionkeyD456252F.template.json /^VimŸUnDoå [ ] ] [ { }/;" o line:1 language:JSON
0 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-staging%aypipelinestagingaysmoketesting238E55CA.template.json /^VimŸUnDoå }, "Arn" [ { }/;" o line:1 language:JSON
0 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-staging%aypipelinestagingaystorage1A0EB67D.template.json /^VimŸUnDoåOñ+8æ®`†Míxö } ] }, ] ] ] }, /;" o line:1 language:JSON
0 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-testing%aypipelinetestingaycdn6BA9650B.template.json /^VimŸUnDoå } }, ] "\/" ] }, ] ] /;" o line:1 language:JSON
0 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-testing%aypipelinetestingayemailscicd177AF3D2.template.json /^VimŸUnDoå ] ] } } [ ] [ ] /;" o line:1 language:JSON
0 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-testing%aypipelinetestingaystorage935CB793.template.json /^VimŸUnDoå6€¯Õ</;" o line:1 language:JSON
0 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-testing%aypipelinetestingaywizard832E030E.template.json /^VimŸUnDoå "", }, "", }, { { } "", /;" o line:1 language:JSON
0 config/polybar/config.ini /^animation-charging-0 = " "$/;" k line:265 language:Iniconf section:module/battery
0 config/polybar/config.ini /^bar-foreground-0 = ${color.green}$/;" k line:217 language:Iniconf section:module/brightness
0 config/polybar/config.ini /^bar-volume-foreground-0 = ${color.green}$/;" k line:435 language:Iniconf section:module/pulseaudio
0 config/polybar/config.ini /^blacklist-0 = scroll lock$/;" k line:136 language:Iniconf section:module/keyboard
0 config/polybar/config.ini /^font-0 = "Iosevka Nerd Font:pixelsize=9;3"$/;" k line:54 language:Iniconf section:bar/main
0 config/polybar/config.ini /^hook-0 = echo ""$/;" k line:104 language:Iniconf section:module/previous
0 config/polybar/config.ini /^hook-0 = echo ""$/;" k line:113 language:Iniconf section:module/next
0 config/polybar/config.ini /^hook-0 = echo ""$/;" k line:121 language:Iniconf section:module/playpause
0 config/polybar/config.ini /^hook-0 = echo ""$/;" k line:129 language:Iniconf section:module/spotify
0 config/polybar/config.ini /^hook-0 = echo "%{A1:notify-send "DUNST_COMMAND_PAUSE" && polybar-msg hook dunst 2:}%{A}" &$/;" k line:369 language:Iniconf section:module/dunst
0 config/polybar/config.ini /^mount-0 = \/$/;" k line:292 language:Iniconf section:module/filesystem
0 config/polybar/config.ini /^ramp-0 = $/;" k line:202 language:Iniconf section:module/brightness
0 config/polybar/config.ini /^ramp-0 = ï‹‹$/;" k line:180 language:Iniconf section:module/temperature
0 config/polybar/config.ini /^ramp-capacity-0 = " "$/;" k line:259 language:Iniconf section:module/battery
0 config/polybar/config.ini /^ramp-headphones-0 = î$/;" k line:425 language:Iniconf section:module/pulseaudio
0 config/polybar/config.ini /^ramp-signal-0 = $/;" k line:326 language:Iniconf section:module/network
0 config/polybar/config.ini /^ramp-volume-0 = $/;" k line:421 language:Iniconf section:module/pulseaudio
0 etc/docker/daemon.json /^ "default-address-pools": [{ "base": "172.30.0.0\/16", "size": 24 }]$/;" o line:5 language:JSON array:default-address-pools
0x2d-0x40000 config/iterm.json /^ "0x2d-0x40000" : {$/;" o line:191 language:JSON object:Keyboard Map
0x2e-0x100000-0x2f config/iterm.json /^ "0x2e-0x100000-0x2f" : {$/;" o line:247 language:JSON object:Keyboard Map
0x32-0x40000 config/iterm.json /^ "0x32-0x40000" : {$/;" o line:115 language:JSON object:Keyboard Map
0x33-0x40000 config/iterm.json /^ "0x33-0x40000" : {$/;" o line:155 language:JSON object:Keyboard Map
0x34-0x40000 config/iterm.json /^ "0x34-0x40000" : {$/;" o line:183 language:JSON object:Keyboard Map
0x35-0x40000 config/iterm.json /^ "0x35-0x40000" : {$/;" o line:219 language:JSON object:Keyboard Map
0x36-0x40000 config/iterm.json /^ "0x36-0x40000" : {$/;" o line:243 language:JSON object:Keyboard Map
0x37-0x40000 config/iterm.json /^ "0x37-0x40000" : {$/;" o line:111 language:JSON object:Keyboard Map
0x38-0x40000 config/iterm.json /^ "0x38-0x40000" : {$/;" o line:151 language:JSON object:Keyboard Map
0xf700-0x220000 config/iterm.json /^ "0xf700-0x220000" : {$/;" o line:143 language:JSON object:Keyboard Map
0xf700-0x240000 config/iterm.json /^ "0xf700-0x240000" : {$/;" o line:207 language:JSON object:Keyboard Map
0xf700-0x260000 config/iterm.json /^ "0xf700-0x260000" : {$/;" o line:107 language:JSON object:Keyboard Map
0xf700-0x280000 config/iterm.json /^ "0xf700-0x280000" : {$/;" o line:187 language:JSON object:Keyboard Map
0xf701-0x220000 config/iterm.json /^ "0xf701-0x220000" : {$/;" o line:256 language:JSON object:Keyboard Map
0xf701-0x240000 config/iterm.json /^ "0xf701-0x240000" : {$/;" o line:163 language:JSON object:Keyboard Map
0xf701-0x260000 config/iterm.json /^ "0xf701-0x260000" : {$/;" o line:231 language:JSON object:Keyboard Map
0xf701-0x280000 config/iterm.json /^ "0xf701-0x280000" : {$/;" o line:147 language:JSON object:Keyboard Map
0xf702-0x220000 config/iterm.json /^ "0xf702-0x220000" : {$/;" o line:199 language:JSON object:Keyboard Map
0xf702-0x240000 config/iterm.json /^ "0xf702-0x240000" : {$/;" o line:264 language:JSON object:Keyboard Map
0xf702-0x260000 config/iterm.json /^ "0xf702-0x260000" : {$/;" o line:171 language:JSON object:Keyboard Map
0xf702-0x280000 config/iterm.json /^ "0xf702-0x280000" : {$/;" o line:235 language:JSON object:Keyboard Map
0xf703-0x220000 config/iterm.json /^ "0xf703-0x220000" : {$/;" o line:159 language:JSON object:Keyboard Map
0xf703-0x240000 config/iterm.json /^ "0xf703-0x240000" : {$/;" o line:227 language:JSON object:Keyboard Map
0xf703-0x260000 config/iterm.json /^ "0xf703-0x260000" : {$/;" o line:139 language:JSON object:Keyboard Map
0xf703-0x280000 config/iterm.json /^ "0xf703-0x280000" : {$/;" o line:203 language:JSON object:Keyboard Map
0xf704-0x20000 config/iterm.json /^ "0xf704-0x20000" : {$/;" o line:268 language:JSON object:Keyboard Map
0xf705-0x20000 config/iterm.json /^ "0xf705-0x20000" : {$/;" o line:135 language:JSON object:Keyboard Map
0xf706-0x20000 config/iterm.json /^ "0xf706-0x20000" : {$/;" o line:179 language:JSON object:Keyboard Map
0xf707-0x20000 config/iterm.json /^ "0xf707-0x20000" : {$/;" o line:211 language:JSON object:Keyboard Map
0xf708-0x20000 config/iterm.json /^ "0xf708-0x20000" : {$/;" o line:252 language:JSON object:Keyboard Map
0xf709-0x20000 config/iterm.json /^ "0xf709-0x20000" : {$/;" o line:119 language:JSON object:Keyboard Map
0xf70a-0x20000 config/iterm.json /^ "0xf70a-0x20000" : {$/;" o line:215 language:JSON object:Keyboard Map
0xf70b-0x20000 config/iterm.json /^ "0xf70b-0x20000" : {$/;" o line:260 language:JSON object:Keyboard Map
0xf70c-0x20000 config/iterm.json /^ "0xf70c-0x20000" : {$/;" o line:123 language:JSON object:Keyboard Map
0xf70d-0x20000 config/iterm.json /^ "0xf70d-0x20000" : {$/;" o line:167 language:JSON object:Keyboard Map
0xf70e-0x20000 config/iterm.json /^ "0xf70e-0x20000" : {$/;" o line:195 language:JSON object:Keyboard Map
0xf70f-0x20000 config/iterm.json /^ "0xf70f-0x20000" : {$/;" o line:223 language:JSON object:Keyboard Map
0xf729-0x20000 config/iterm.json /^ "0xf729-0x20000" : {$/;" o line:127 language:JSON object:Keyboard Map
0xf729-0x40000 config/iterm.json /^ "0xf729-0x40000" : {$/;" o line:175 language:JSON object:Keyboard Map
0xf72b-0x20000 config/iterm.json /^ "0xf72b-0x20000" : {$/;" o line:239 language:JSON object:Keyboard Map
0xf72b-0x40000 config/iterm.json /^ "0xf72b-0x40000" : {$/;" o line:131 language:JSON object:Keyboard Map
1 config/iterm.json /^ "ssh",$/;" s line:45 language:JSON array:Jobs to Ignore
1 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-cornerstone%aypipelinecornerstoneaycfurlsignerD3EF0A32.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" z line:1 language:JSON
1 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-production%aypipelineproductionaycfurlsigner098095E9.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" z line:1 language:JSON
1 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-testing%aypipelinetestingaycdn6BA9650B.template.json /^VimŸUnDoå } }, ] "\/" ] }, ] ] /;" s line:1 language:JSON
1 config/polybar/config.ini /^animation-charging-1 = " "$/;" k line:266 language:Iniconf section:module/battery
1 config/polybar/config.ini /^bar-foreground-1 = ${color.green}$/;" k line:218 language:Iniconf section:module/brightness
1 config/polybar/config.ini /^bar-volume-foreground-1 = ${color.green}$/;" k line:436 language:Iniconf section:module/pulseaudio
1 config/polybar/config.ini /^font-1 = "Iosevka Nerd Font:pixelsize=11;4"$/;" k line:55 language:Iniconf section:bar/main
1 config/polybar/config.ini /^hook-1 = echo " ïŠ "$/;" k line:105 language:Iniconf section:module/previous
1 config/polybar/config.ini /^hook-1 = echo " ïŒ "$/;" k line:122 language:Iniconf section:module/playpause
1 config/polybar/config.ini /^hook-1 = echo " ïŽ "$/;" k line:114 language:Iniconf section:module/next
1 config/polybar/config.ini /^hook-1 = echo "%{A1:notify-send "DUNST_COMMAND_RESUME" && polybar-msg hook dunst 1:}%{A}" &$/;" k line:370 language:Iniconf section:module/dunst
1 config/polybar/config.ini /^hook-1 = spotifyctl -q status --format '%artist%: %title%'$/;" k line:130 language:Iniconf section:module/spotify
1 config/polybar/config.ini /^ramp-1 = $/;" k line:203 language:Iniconf section:module/brightness
1 config/polybar/config.ini /^ramp-1 = ï‹Š$/;" k line:181 language:Iniconf section:module/temperature
1 config/polybar/config.ini /^ramp-capacity-1 = " "$/;" k line:260 language:Iniconf section:module/battery
1 config/polybar/config.ini /^ramp-signal-1 = $/;" k line:327 language:Iniconf section:module/network
1 config/polybar/config.ini /^ramp-volume-1 = $/;" k line:422 language:Iniconf section:module/pulseaudio
10 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-production%aypipelineproductionaycfurlsigner098095E9.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" n line:1 language:JSON
1st pass .github/workflows/ci.yml /^ - name: 1st pass$/;" t line:37 language:ansible
2 config/iterm.json /^ "slogin",$/;" s line:46 language:JSON array:Jobs to Ignore
2 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-cornerstone%aypipelinecornerstoneaycfurlsignerD3EF0A32.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" s line:1 language:JSON
2 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-production%aypipelineproductionaycfurlsigner098095E9.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" s line:1 language:JSON
2 config/polybar/config.ini /^animation-charging-2 = " "$/;" k line:267 language:Iniconf section:module/battery
2 config/polybar/config.ini /^bar-foreground-2 = ${color.yellow}$/;" k line:219 language:Iniconf section:module/brightness
2 config/polybar/config.ini /^bar-volume-foreground-2 = ${color.yellow}$/;" k line:437 language:Iniconf section:module/pulseaudio
2 config/polybar/config.ini /^font-2 = "Font Awesome 5 Free;8;4"$/;" k line:56 language:Iniconf section:bar/main
2 config/polybar/config.ini /^hook-2 = echo " ï‹ "$/;" k line:123 language:Iniconf section:module/playpause
2 config/polybar/config.ini /^ramp-2 = $/;" k line:204 language:Iniconf section:module/brightness
2 config/polybar/config.ini /^ramp-2 = $/;" k line:182 language:Iniconf section:module/temperature
2 config/polybar/config.ini /^ramp-capacity-2 = " "$/;" k line:261 language:Iniconf section:module/battery
2 config/polybar/config.ini /^ramp-signal-2 = $/;" k line:328 language:Iniconf section:module/network
2 config/polybar/config.ini /^ramp-volume-2 = $/;" k line:423 language:Iniconf section:module/pulseaudio
2nd pass .github/workflows/ci.yml /^ - name: 2nd pass$/;" t line:40 language:ansible
3 config/iterm.json /^ "telnet"$/;" s line:47 language:JSON array:Jobs to Ignore
3 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-cornerstone%aypipelinecornerstoneaycfurlsignerD3EF0A32.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" z line:1 language:JSON
3 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-production%aypipelineproductionaycfurlsigner098095E9.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" z line:1 language:JSON
3 config/polybar/config.ini /^animation-charging-3 = "ï‰ "$/;" k line:268 language:Iniconf section:module/battery
3 config/polybar/config.ini /^bar-foreground-3 = ${color.yellow}$/;" k line:220 language:Iniconf section:module/brightness
3 config/polybar/config.ini /^bar-volume-foreground-3 = ${color.yellow}$/;" k line:438 language:Iniconf section:module/pulseaudio
3 config/polybar/config.ini /^ramp-3 = $/;" k line:205 language:Iniconf section:module/brightness
3 config/polybar/config.ini /^ramp-3 = $/;" k line:183 language:Iniconf section:module/temperature
3 config/polybar/config.ini /^ramp-capacity-3 = "ï‰ "$/;" k line:262 language:Iniconf section:module/battery
4 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-cornerstone%aypipelinecornerstoneaycfurlsignerD3EF0A32.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" s line:1 language:JSON
4 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-production%aypipelineproductionaycfurlsigner098095E9.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" s line:1 language:JSON
4 config/polybar/config.ini /^animation-charging-4 = " "$/;" k line:269 language:Iniconf section:module/battery
4 config/polybar/config.ini /^bar-foreground-4 = ${color.red}$/;" k line:221 language:Iniconf section:module/brightness
4 config/polybar/config.ini /^bar-volume-foreground-4 = ${color.red}$/;" k line:439 language:Iniconf section:module/pulseaudio
4 config/polybar/config.ini /^ramp-4 = $/;" k line:206 language:Iniconf section:module/brightness
4 config/polybar/config.ini /^ramp-4 = $/;" k line:184 language:Iniconf section:module/temperature
4 config/polybar/config.ini /^ramp-capacity-4 = " "$/;" k line:263 language:Iniconf section:module/battery
5 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-production%aypipelineproductionaycfurlsigner098095E9.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" z line:1 language:JSON
6 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-production%aypipelineproductionaycfurlsigner098095E9.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" s line:1 language:JSON
7 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-production%aypipelineproductionaycfurlsigner098095E9.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" z line:1 language:JSON
8 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-production%aypipelineproductionaycfurlsigner098095E9.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" s line:1 language:JSON
9 config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-production%aypipelineproductionaycfurlsigner098095E9.template.json /^VimŸUnDoå "", }, "", }, "", }, "", }, /;" z line:1 language:JSON
; config/nvim/editor.vim /^nnoremap ; :$/;" m line:6 language:Vim
<A-,> config/nvim/plugins.vim /^ nmap <A-,> <Plug>(GitGutterUndoHunk)$/;" m line:219 language:Vim
<A-.> config/nvim/plugins.vim /^ nmap <A-.> <Plug>(GitGutterStageHunk)$/;" m line:220 language:Vim
<A-/> config/nvim/plugins.vim /^ nmap <A-\/> <Plug>(GitGutterPreviewHunk)$/;" m line:221 language:Vim
<A-d> config/nvim/plugins.vim /^ nmap <A-d> <Plug>(ale_detail)<CR>$/;" m line:349 language:Vim
<A-f> config/nvim/plugins.vim /^ nmap <A-f> <Plug>(ale_fix)<CR>$/;" m line:347 language:Vim
<A-j> config/nvim/plugins.vim /^ nmap <A-j> <Plug>(ale_next_wrap)$/;" m line:351 language:Vim
<A-k> config/nvim/plugins.vim /^ nmap <A-k> <Plug>(ale_previous_wrap)$/;" m line:350 language:Vim
<A-l> config/nvim/plugins.vim /^ nmap <A-l> <Plug>(ale_lint)<CR>$/;" m line:348 language:Vim
<C-Down> config/nvim/editor.vim /^nnoremap <silent> <C-Down> :resize -2<CR>$/;" m line:111 language:Vim
<C-H> config/nvim/editor.vim /^nnoremap <silent> <C-H> <C-W><C-H>$/;" m line:106 language:Vim
<C-J> config/nvim/editor.vim /^nnoremap <silent> <C-J> <C-W><C-J>$/;" m line:103 language:Vim
<C-K> config/nvim/editor.vim /^nnoremap <silent> <C-K> <C-W><C-K>$/;" m line:104 language:Vim
<C-L> config/nvim/editor.vim /^nnoremap <silent> <C-L> <C-W><C-L>$/;" m line:105 language:Vim
<C-Left> config/nvim/editor.vim /^nnoremap <silent> <C-Left> :vertical resize +2<CR>$/;" m line:108 language:Vim
<C-Right> config/nvim/editor.vim /^nnoremap <silent> <C-Right> :vertical resize -2<CR>$/;" m line:109 language:Vim
<C-Up> config/nvim/editor.vim /^nnoremap <silent> <C-Up> :resize +2<CR>$/;" m line:110 language:Vim
<C-f> config/nvim/editor.vim /^ nnoremap <C-f> :Ag<Cr>$/;" m line:49 language:Vim
<C-left> config/nvim/editor.vim /^map <C-left> :tabp<cr>$/;" m line:95 language:Vim
<C-n> config/nvim/plugins.vim /^ imap <buffer><C-n> <Plug>(committia-scroll-diff-down-half)$/;" m line:196 language:Vim
<C-p> config/nvim/plugins.vim /^ imap <buffer><C-p> <Plug>(committia-scroll-diff-up-half)$/;" m line:197 language:Vim
<C-right> config/nvim/editor.vim /^map <C-right> :tabn<cr>$/;" m line:96 language:Vim
<C-t><down> config/nvim/editor.vim /^map <C-t><down> :tabl<cr>$/;" m line:94 language:Vim
<C-t><up> config/nvim/editor.vim /^map <C-t><up> :tabr<cr>$/;" m line:93 language:Vim
<C-t>f config/nvim/plugins.vim /^ nmap <silent> <C-t>f :TestFile<CR>$/;" m line:111 language:Vim
<C-t>l config/nvim/plugins.vim /^ nmap <silent> <C-t>l :TestLast<CR>$/;" m line:113 language:Vim
<C-t>n config/nvim/plugins.vim /^ nmap <silent> <C-t>n :TestNearest<CR>$/;" m line:110 language:Vim
<C-t>s config/nvim/plugins.vim /^ nmap <silent> <C-t>s :TestSuite<CR>$/;" m line:112 language:Vim
<C-t>v config/nvim/plugins.vim /^ nmap <silent> <C-t>v :TestVisit<CR>$/;" m line:114 language:Vim
<F2> config/nvim/plugins.vim /^ nmap <F2> <Plug>(ale_rename)$/;" m line:353 language:Vim
<F3> config/nvim/plugins.vim /^ nmap <F3> <Plug>(ale_hover)$/;" m line:354 language:Vim
<F4> config/nvim/plugins.vim /^ nmap <F4> <Plug>(ale_go_to_definition_in_vsplit)$/;" m line:355 language:Vim
<F8> config/nvim/plugins.vim /^ nmap <F8> :TagbarToggle<CR>$/;" m line:158 language:Vim
<Leader>F config/nvim/plugins.vim /^ nmap <Leader>F :Files<CR>$/;" m line:314 language:Vim
<Leader>b config/nvim/plugins.vim /^ nmap <Leader>b :Buffers<CR>$/;" m line:316 language:Vim
<Leader>bt config/nvim/plugins.vim /^ nmap <Leader>bt :BTags<CR>$/;" m line:312 language:Vim
<Leader>c config/nvim/plugins.vim /^ nmap <Leader>c :Commits<CR>$/;" m line:315 language:Vim
<Leader>f config/nvim/plugins.vim /^ nmap <Leader>f :GFiles<CR>$/;" m line:313 language:Vim
<Leader>h config/nvim/plugins.vim /^ nmap <Leader>h :History<CR>$/;" m line:317 language:Vim
<Leader>t config/nvim/plugins.vim /^ nmap <Leader>t :Tags<CR>$/;" m line:311 language:Vim
<Leader>toc config/nvim/ftplugin/markdown.vim /^nmap <buffer> <silent> <Leader>toc :GenTocGFM<CR>$/;" m line:16 language:Vim
<S-Tab> config/nvim/editor.vim /^nnoremap <silent> <S-Tab> :bprevious<CR>$/;" m line:165 language:Vim
<Space> config/nvim/editor.vim /^nnoremap <Space> za$/;" m line:116 language:Vim
<Space> config/nvim/editor.vim /^vnoremap <Space> za$/;" m line:117 language:Vim
<Tab> config/nvim/editor.vim /^nnoremap <silent> <Tab> :bnext<CR>$/;" m line:164 language:Vim
<leader><tab> config/nvim/plugins.vim /^ nmap <leader><tab> <plug>(fzf-maps-n)$/;" m line:318 language:Vim
<leader><tab> config/nvim/plugins.vim /^ omap <leader><tab> <plug>(fzf-maps-o)$/;" m line:320 language:Vim
<leader><tab> config/nvim/plugins.vim /^ xmap <leader><tab> <plug>(fzf-maps-x)$/;" m line:319 language:Vim
<leader>Q config/nvim/editor.vim /^nnoremap <silent> <leader>Q :bufdo bd<CR>$/;" m line:167 language:Vim
<leader>R config/nvim/editor.vim /^nnoremap <silent> <leader>R :e!<CR>$/;" m line:169 language:Vim
<leader>ev config/nvim/editor.vim /^nmap <silent> <leader>ev :e $MYVIMRC<CR>$/;" m line:120 language:Vim
<leader>q config/nvim/editor.vim /^nnoremap <silent> <leader>q :bd<cr>gT$/;" m line:166 language:Vim
<leader>r config/nvim/editor.vim /^nnoremap <silent> <leader>r :e<CR>$/;" m line:168 language:Vim
<leader>ss config/nvim/editor.vim /^map <silent> <leader>ss :setlocal spell!<cr>$/;" m line:89 language:Vim
<leader>sv config/nvim/editor.vim /^nmap <silent> <leader>sv :so $MYVIMRC<CR>$/;" m line:121 language:Vim
? config/nvim/plugins.vim /^ map ? <Plug>(incsearch-backward)$/;" m line:228 language:Vim
@elm-tooling/elm-language-server package.json /^ "@elm-tooling\/elm-language-server": "2.3.0",$/;" s line:7 language:JSON object:dependencies
ACustomState dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class ACustomState(AnInstance):$/;" c line:155 language:Python function:_make_objects file: inherits:AnInstance access:private
ACustomState dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class ACustomState(AnInstance):$/;" c line:152 language:Python function:_make_objects file: inherits:AnInstance access:private
ALL_OFF config/polybar/scripts/checkupdates /^ ALL_OFF="$(tput sgr0)"$/;" v line:62 language:Sh
ALL_OFF config/polybar/scripts/checkupdates /^ ALL_OFF="\\e[1;0m"$/;" v line:69 language:Sh
ANCHOR_TEMPLATE dotbot/lib/pyyaml/lib/yaml/serializer.py /^ ANCHOR_TEMPLATE = u'id%03d'$/;" v line:13 language:Python class:Serializer access:public
ANCHOR_TEMPLATE dotbot/lib/pyyaml/lib3/yaml/serializer.py /^ ANCHOR_TEMPLATE = 'id%03d'$/;" v line:13 language:Python class:Serializer access:public
ASCII Anti Aliased config/iterm.json /^ "ASCII Anti Aliased" : true,$/;" b line:83 language:JSON
AState dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class AState(AnInstance):$/;" c line:143 language:Python function:_make_objects file: inherits:AnInstance access:private
AState dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class AState(AnInstance):$/;" c line:140 language:Python function:_make_objects file: inherits:AnInstance access:private
AUTHOR dotbot/lib/pyyaml/setup.py /^AUTHOR = "Kirill Simonov"$/;" v line:17 language:Python access:public
AUTHOR_EMAIL dotbot/lib/pyyaml/setup.py /^AUTHOR_EMAIL = 'xi@resolvent.net'$/;" v line:18 language:Python access:public
Action config/iterm.json /^ "Action" : 10,$/;" n line:108 language:JSON object:Keyboard Map.0xf700-0x260000
Action config/iterm.json /^ "Action" : 10,$/;" n line:120 language:JSON object:Keyboard Map.0xf709-0x20000
Action config/iterm.json /^ "Action" : 10,$/;" n line:124 language:JSON object:Keyboard Map.0xf70c-0x20000
Action config/iterm.json /^ "Action" : 10,$/;" n line:128 language:JSON object:Keyboard Map.0xf729-0x20000
Action config/iterm.json /^ "Action" : 10,$/;" n line:132 language:JSON object:Keyboard Map.0xf72b-0x40000
Action config/iterm.json /^ "Action" : 10,$/;" n line:136 language:JSON object:Keyboard Map.0xf705-0x20000
Action config/iterm.json /^ "Action" : 10,$/;" n line:140 language:JSON object:Keyboard Map.0xf703-0x260000
Action config/iterm.json /^ "Action" : 10,$/;" n line:144 language:JSON object:Keyboard Map.0xf700-0x220000
Action config/iterm.json /^ "Action" : 10,$/;" n line:160 language:JSON object:Keyboard Map.0xf703-0x220000
Action config/iterm.json /^ "Action" : 10,$/;" n line:164 language:JSON object:Keyboard Map.0xf701-0x240000
Action config/iterm.json /^ "Action" : 10,$/;" n line:168 language:JSON object:Keyboard Map.0xf70d-0x20000
Action config/iterm.json /^ "Action" : 10,$/;" n line:172 language:JSON object:Keyboard Map.0xf702-0x260000
Action config/iterm.json /^ "Action" : 10,$/;" n line:176 language:JSON object:Keyboard Map.0xf729-0x40000
Action config/iterm.json /^ "Action" : 10,$/;" n line:180 language:JSON object:Keyboard Map.0xf706-0x20000
Action config/iterm.json /^ "Action" : 10,$/;" n line:196 language:JSON object:Keyboard Map.0xf70e-0x20000
Action config/iterm.json /^ "Action" : 10,$/;" n line:200 language:JSON object:Keyboard Map.0xf702-0x220000
Action config/iterm.json /^ "Action" : 10,$/;" n line:208 language:JSON object:Keyboard Map.0xf700-0x240000
Action config/iterm.json /^ "Action" : 10,$/;" n line:212 language:JSON object:Keyboard Map.0xf707-0x20000
Action config/iterm.json /^ "Action" : 10,$/;" n line:216 language:JSON object:Keyboard Map.0xf70a-0x20000
Action config/iterm.json /^ "Action" : 10,$/;" n line:224 language:JSON object:Keyboard Map.0xf70f-0x20000
Action config/iterm.json /^ "Action" : 10,$/;" n line:228 language:JSON object:Keyboard Map.0xf703-0x240000
Action config/iterm.json /^ "Action" : 10,$/;" n line:232 language:JSON object:Keyboard Map.0xf701-0x260000
Action config/iterm.json /^ "Action" : 10,$/;" n line:240 language:JSON object:Keyboard Map.0xf72b-0x20000
Action config/iterm.json /^ "Action" : 10,$/;" n line:249 language:JSON object:Keyboard Map.0x2e-0x100000-0x2f
Action config/iterm.json /^ "Action" : 10,$/;" n line:253 language:JSON object:Keyboard Map.0xf708-0x20000
Action config/iterm.json /^ "Action" : 10,$/;" n line:257 language:JSON object:Keyboard Map.0xf701-0x220000
Action config/iterm.json /^ "Action" : 10,$/;" n line:261 language:JSON object:Keyboard Map.0xf70b-0x20000
Action config/iterm.json /^ "Action" : 10,$/;" n line:265 language:JSON object:Keyboard Map.0xf702-0x240000
Action config/iterm.json /^ "Action" : 10,$/;" n line:269 language:JSON object:Keyboard Map.0xf704-0x20000
Action config/iterm.json /^ "Action" : 11,$/;" n line:112 language:JSON object:Keyboard Map.0x37-0x40000
Action config/iterm.json /^ "Action" : 11,$/;" n line:116 language:JSON object:Keyboard Map.0x32-0x40000
Action config/iterm.json /^ "Action" : 11,$/;" n line:148 language:JSON object:Keyboard Map.0xf701-0x280000
Action config/iterm.json /^ "Action" : 11,$/;" n line:152 language:JSON object:Keyboard Map.0x38-0x40000
Action config/iterm.json /^ "Action" : 11,$/;" n line:156 language:JSON object:Keyboard Map.0x33-0x40000
Action config/iterm.json /^ "Action" : 11,$/;" n line:184 language:JSON object:Keyboard Map.0x34-0x40000
Action config/iterm.json /^ "Action" : 11,$/;" n line:188 language:JSON object:Keyboard Map.0xf700-0x280000
Action config/iterm.json /^ "Action" : 11,$/;" n line:192 language:JSON object:Keyboard Map.0x2d-0x40000
Action config/iterm.json /^ "Action" : 11,$/;" n line:204 language:JSON object:Keyboard Map.0xf703-0x280000
Action config/iterm.json /^ "Action" : 11,$/;" n line:220 language:JSON object:Keyboard Map.0x35-0x40000
Action config/iterm.json /^ "Action" : 11,$/;" n line:236 language:JSON object:Keyboard Map.0xf702-0x280000
Action config/iterm.json /^ "Action" : 11,$/;" n line:244 language:JSON object:Keyboard Map.0x36-0x40000
AliasEvent dotbot/lib/pyyaml/ext/_yaml.pyx /^AliasEvent = yaml.events.AliasEvent$/;" v line:53 language:Python access:public
AliasEvent dotbot/lib/pyyaml/lib/yaml/events.py /^class AliasEvent(NodeEvent):$/;" c line:61 language:Python inherits:NodeEvent access:public
AliasEvent dotbot/lib/pyyaml/lib3/yaml/events.py /^class AliasEvent(NodeEvent):$/;" c line:61 language:Python inherits:NodeEvent access:public
AliasToken dotbot/lib/pyyaml/ext/_yaml.pyx /^AliasToken = yaml.tokens.AliasToken$/;" v line:44 language:Python access:public
AliasToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class AliasToken(Token):$/;" c line:75 language:Python inherits:Token access:public
AliasToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class AliasToken(Token):$/;" c line:75 language:Python inherits:Token access:public
Ambiguous Double Width config/iterm.json /^ "Ambiguous Double Width" : false,$/;" b line:42 language:JSON
AnInstance dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class AnInstance:$/;" c line:131 language:Python function:_make_objects file: inherits: access:private
AnInstance dotbot/lib/pyyaml/tests/lib/test_recursive.py /^class AnInstance:$/;" c line:4 language:Python inherits: access:public
AnInstance dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class AnInstance:$/;" c line:128 language:Python function:_make_objects file: inherits: access:private
AnInstance dotbot/lib/pyyaml/tests/lib3/test_recursive.py /^class AnInstance:$/;" c line:4 language:Python inherits: access:public
AnInstanceWithState dotbot/lib/pyyaml/tests/lib/test_recursive.py /^class AnInstanceWithState(AnInstance):$/;" c line:17 language:Python inherits:AnInstance access:public
AnInstanceWithState dotbot/lib/pyyaml/tests/lib3/test_recursive.py /^class AnInstanceWithState(AnInstance):$/;" c line:17 language:Python inherits:AnInstance access:public
AnObject dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class AnObject(object):$/;" c line:117 language:Python function:_make_objects file: inherits:object access:private
AnObject dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class AnObject:$/;" c line:114 language:Python function:_make_objects file: inherits: access:private
AnchorToken dotbot/lib/pyyaml/ext/_yaml.pyx /^AnchorToken = yaml.tokens.AnchorToken$/;" v line:45 language:Python access:public
AnchorToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class AnchorToken(Token):$/;" c line:82 language:Python inherits:Token access:public
AnchorToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class AnchorToken(Token):$/;" c line:82 language:Python inherits:Token access:public
Ansi 0 Color config/iterm.json /^ "Ansi 0 Color" : {$/;" o line:305 language:JSON
Ansi 1 Color config/iterm.json /^ "Ansi 1 Color" : {$/;" o line:310 language:JSON
Ansi 10 Color config/iterm.json /^ "Ansi 10 Color" : {$/;" o line:36 language:JSON
Ansi 11 Color config/iterm.json /^ "Ansi 11 Color" : {$/;" o line:99 language:JSON
Ansi 12 Color config/iterm.json /^ "Ansi 12 Color" : {$/;" o line:10 language:JSON
Ansi 13 Color config/iterm.json /^ "Ansi 13 Color" : {$/;" o line:77 language:JSON
Ansi 14 Color config/iterm.json /^ "Ansi 14 Color" : {$/;" o line:285 language:JSON
Ansi 15 Color config/iterm.json /^ "Ansi 15 Color" : {$/;" o line:49 language:JSON
Ansi 2 Color config/iterm.json /^ "Ansi 2 Color" : {$/;" o line:27 language:JSON
Ansi 3 Color config/iterm.json /^ "Ansi 3 Color" : {$/;" o line:316 language:JSON
Ansi 4 Color config/iterm.json /^ "Ansi 4 Color" : {$/;" o line:2 language:JSON
Ansi 5 Color config/iterm.json /^ "Ansi 5 Color" : {$/;" o line:16 language:JSON
Ansi 6 Color config/iterm.json /^ "Ansi 6 Color" : {$/;" o line:337 language:JSON
Ansi 7 Color config/iterm.json /^ "Ansi 7 Color" : {$/;" o line:321 language:JSON
Ansi 8 Color config/iterm.json /^ "Ansi 8 Color" : {$/;" o line:326 language:JSON
Ansi 9 Color config/iterm.json /^ "Ansi 9 Color" : {$/;" o line:331 language:JSON
Arn config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%cdk.out%assembly-ay-pipeline-testing%aypipelinetestingtmpemailsattachmentsbucket8B0A51E7.template.json /^VimŸUnDoå ] ] }, ] }, ] }, ] /;" z line:1 language:JSON
Awesome upgrade binary README.md /^### Awesome upgrade binary$/;" S line:32 language:Markdown section:dotfiles""Most notable
AyQAs config/nvim/undodir/%Users%tomasztrebski%dev-ay%ay-aws-app%ay%groups.py /^VimŸUnDoådef AyQAs( cache=5õ/;" f line:1 language:Python access:public signature:( cache=5õ\x18
BASEDIR .installer/git.sh /^BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"$/;" v line:3 language:Sh
BASEDIR dotbot/tools/git-submodule/install /^BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"$/;" v line:9 language:Sh
BASEDIR dotbot/tools/git-submodule/install.ps1 /^$BASEDIR = $PSScriptRoot$/;" v line:7 language:PowerShell
BASEDIR dotbot/tools/hg-subrepo/install /^BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"$/;" v line:9 language:Sh
BASEDIR dotbot/tools/hg-subrepo/install.ps1 /^$BASEDIR = $PSScriptRoot$/;" v line:7 language:PowerShell
BASEDIR install /^BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"$/;" v line:11 language:Sh
BLUE config/polybar/scripts/checkupdates /^ BLUE="${BOLD}$(tput setaf 4)"$/;" v line:64 language:Sh
BLUE config/polybar/scripts/checkupdates /^ BLUE="${BOLD}\\e[1;34m"$/;" v line:71 language:Sh
BLUE dotbot/dotbot/messenger/color.py /^ BLUE = "\\033[94m"$/;" v line:7 language:Python class:Color access:public
BM Growl config/iterm.json /^ "BM Growl" : true,$/;" b line:64 language:JSON
BOLD config/polybar/scripts/checkupdates /^ BOLD="$(tput bold)"$/;" v line:63 language:Sh
BOLD config/polybar/scripts/checkupdates /^ BOLD="\\e[1;1m"$/;" v line:70 language:Sh
Background Color config/iterm.json /^ "Background Color" : {$/;" o line:93 language:JSON
Background Image Location config/iterm.json /^ "Background Image Location" : "",$/;" s line:276 language:JSON
BaseConstructor dotbot/lib/pyyaml/lib/yaml/constructor.py /^class BaseConstructor(object):$/;" c line:44 language:Python inherits:object access:public
BaseConstructor dotbot/lib/pyyaml/lib3/yaml/constructor.py /^class BaseConstructor:$/;" c line:19 language:Python inherits: access:public
BaseDumper dotbot/lib/pyyaml/lib/yaml/dumper.py /^class BaseDumper(Emitter, Serializer, BaseRepresenter, BaseResolver):$/;" c line:9 language:Python inherits:Emitter, Serializer, BaseRepresenter, BaseResolver access:public
BaseDumper dotbot/lib/pyyaml/lib3/yaml/dumper.py /^class BaseDumper(Emitter, Serializer, BaseRepresenter, BaseResolver):$/;" c line:9 language:Python inherits:Emitter, Serializer, BaseRepresenter, BaseResolver access:public
BaseLoader dotbot/lib/pyyaml/lib/yaml/loader.py /^class BaseLoader(Reader, Scanner, Parser, Composer, BaseConstructor, BaseResolver):$/;" c line:11 language:Python inherits:Reader, Scanner, Parser, Composer, BaseConstructor, BaseResolver access:public
BaseLoader dotbot/lib/pyyaml/lib3/yaml/loader.py /^class BaseLoader(Reader, Scanner, Parser, Composer, BaseConstructor, BaseResolver):$/;" c line:11 language:Python inherits:Reader, Scanner, Parser, Composer, BaseConstructor, BaseResolver access:public
BaseRepresenter dotbot/lib/pyyaml/lib/yaml/representer.py /^class BaseRepresenter(object):$/;" c line:16 language:Python inherits:object access:public
BaseRepresenter dotbot/lib/pyyaml/lib3/yaml/representer.py /^class BaseRepresenter:$/;" c line:13 language:Python inherits: access:public
BaseResolver dotbot/lib/pyyaml/lib/yaml/resolver.py /^class BaseResolver(object):$/;" c line:12 language:Python inherits:object access:public
BaseResolver dotbot/lib/pyyaml/lib3/yaml/resolver.py /^class BaseResolver:$/;" c line:12 language:Python inherits: access:public
Blinking Cursor config/iterm.json /^ "Blinking Cursor" : false,$/;" b line:60 language:JSON
BlockEndToken dotbot/lib/pyyaml/ext/_yaml.pyx /^BlockEndToken = yaml.tokens.BlockEndToken$/;" v line:35 language:Python access:public
BlockEndToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class BlockEndToken(Token):$/;" c line:48 language:Python inherits:Token access:public
BlockEndToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class BlockEndToken(Token):$/;" c line:48 language:Python inherits:Token access:public
BlockEntryToken dotbot/lib/pyyaml/ext/_yaml.pyx /^BlockEntryToken = yaml.tokens.BlockEntryToken$/;" v line:42 language:Python access:public
BlockEntryToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class BlockEntryToken(Token):$/;" c line:69 language:Python inherits:Token access:public
BlockEntryToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class BlockEntryToken(Token):$/;" c line:69 language:Python inherits:Token access:public
BlockMappingStartToken dotbot/lib/pyyaml/ext/_yaml.pyx /^BlockMappingStartToken = yaml.tokens.BlockMappingStartToken$/;" v line:34 language:Python access:public
BlockMappingStartToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class BlockMappingStartToken(Token):$/;" c line:45 language:Python inherits:Token access:public
BlockMappingStartToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class BlockMappingStartToken(Token):$/;" c line:45 language:Python inherits:Token access:public
BlockSequenceStartToken dotbot/lib/pyyaml/ext/_yaml.pyx /^BlockSequenceStartToken = yaml.tokens.BlockSequenceStartToken$/;" v line:33 language:Python access:public
BlockSequenceStartToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class BlockSequenceStartToken(Token):$/;" c line:42 language:Python inherits:Token access:public
BlockSequenceStartToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class BlockSequenceStartToken(Token):$/;" c line:42 language:Python inherits:Token access:public
Blue Component config/iterm.json /^ "Blue Component" : 0,$/;" n line:29 language:JSON object:Ansi 2 Color
Blue Component config/iterm.json /^ "Blue Component" : 0,$/;" n line:307 language:JSON object:Ansi 0 Color
Blue Component config/iterm.json /^ "Blue Component" : 0,$/;" n line:312 language:JSON object:Ansi 1 Color
Blue Component config/iterm.json /^ "Blue Component" : 0,$/;" n line:318 language:JSON object:Ansi 3 Color
Blue Component config/iterm.json /^ "Blue Component" : 0,$/;" n line:90 language:JSON object:Selected Text Color
Blue Component config/iterm.json /^ "Blue Component" : 0,$/;" n line:95 language:JSON object:Background Color
Blue Component config/iterm.json /^ "Blue Component" : 0.3333333432674408,$/;" n line:101 language:JSON object:Ansi 11 Color
Blue Component config/iterm.json /^ "Blue Component" : 0.3333333432674408,$/;" n line:328 language:JSON object:Ansi 8 Color
Blue Component config/iterm.json /^ "Blue Component" : 0.3333333432674408,$/;" n line:333 language:JSON object:Ansi 9 Color
Blue Component config/iterm.json /^ "Blue Component" : 0.3333333432674408,$/;" n line:38 language:JSON object:Ansi 10 Color
Blue Component config/iterm.json /^ "Blue Component" : 0.73333334922790527,$/;" n line:18 language:JSON object:Ansi 5 Color
Blue Component config/iterm.json /^ "Blue Component" : 0.73333334922790527,$/;" n line:299 language:JSON object:Cursor Color
Blue Component config/iterm.json /^ "Blue Component" : 0.73333334922790527,$/;" n line:323 language:JSON object:Ansi 7 Color
Blue Component config/iterm.json /^ "Blue Component" : 0.73333334922790527,$/;" n line:339 language:JSON object:Ansi 6 Color
Blue Component config/iterm.json /^ "Blue Component" : 0.73333334922790527,$/;" n line:4 language:JSON object:Ansi 4 Color
Blue Component config/iterm.json /^ "Blue Component" : 0.73333334922790527,$/;" n line:56 language:JSON object:Foreground Color
Blue Component config/iterm.json /^ "Blue Component" : 1,$/;" n line:12 language:JSON object:Ansi 12 Color
Blue Component config/iterm.json /^ "Blue Component" : 1,$/;" n line:23 language:JSON object:Bold Color
Blue Component config/iterm.json /^ "Blue Component" : 1,$/;" n line:287 language:JSON object:Ansi 14 Color
Blue Component config/iterm.json /^ "Blue Component" : 1,$/;" n line:293 language:JSON object:Cursor Text Color
Blue Component config/iterm.json /^ "Blue Component" : 1,$/;" n line:51 language:JSON object:Ansi 15 Color
Blue Component config/iterm.json /^ "Blue Component" : 1,$/;" n line:71 language:JSON object:Selection Color
Blue Component config/iterm.json /^ "Blue Component" : 1,$/;" n line:79 language:JSON object:Ansi 13 Color
Blur config/iterm.json /^ "Blur" : true,$/;" b line:277 language:JSON
Blur Radius config/iterm.json /^ "Blur Radius" : 4.0893698445431443,$/;" n line:274 language:JSON
Bold Color config/iterm.json /^ "Bold Color" : {$/;" o line:21 language:JSON
Bootstrap dotbot/lib/pyyaml/packaging/build/appveyor.ps1 /^Function Bootstrap() {$/;" f line:16 language:PowerShell signature:()
Bug Reports dotbot/CONTRIBUTING.md /^Bug Reports$/;" s line:23 language:Markdown chapter:Contributing
Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg) dotbot/README.md /^# Dotbot [![Build Status](https:\/\/github.com\/anishathalye\/dotbot\/workflows\/CI\/badge.svg)]/;" l line:1 language:Markdown
Build-Wheel dotbot/lib/pyyaml/packaging/build/appveyor.ps1 /^Function Build-Wheel($python_path) {$/;" f line:52 language:PowerShell signature:($python_path)
CBaseDumper dotbot/lib/pyyaml/lib/yaml/cyaml.py /^class CBaseDumper(CEmitter, BaseRepresenter, BaseResolver):$/;" c line:51 language:Python inherits:CEmitter, BaseRepresenter, BaseResolver access:public
CBaseDumper dotbot/lib/pyyaml/lib3/yaml/cyaml.py /^class CBaseDumper(CEmitter, BaseRepresenter, BaseResolver):$/;" c line:51 language:Python inherits:CEmitter, BaseRepresenter, BaseResolver access:public
CBaseLoader dotbot/lib/pyyaml/lib/yaml/cyaml.py /^class CBaseLoader(CParser, BaseConstructor, BaseResolver):$/;" c line:16 language:Python inherits:CParser, BaseConstructor, BaseResolver access:public
CBaseLoader dotbot/lib/pyyaml/lib3/yaml/cyaml.py /^class CBaseLoader(CParser, BaseConstructor, BaseResolver):$/;" c line:16 language:Python inherits:CParser, BaseConstructor, BaseResolver access:public
CDumper dotbot/lib/pyyaml/lib/yaml/cyaml.py /^class CDumper(CEmitter, Serializer, Representer, Resolver):$/;" c line:85 language:Python inherits:CEmitter, Serializer, Representer, Resolver access:public
CDumper dotbot/lib/pyyaml/lib3/yaml/cyaml.py /^class CDumper(CEmitter, Serializer, Representer, Resolver):$/;" c line:85 language:Python inherits:CEmitter, Serializer, Representer, Resolver access:public
CEmitter dotbot/lib/pyyaml/ext/_yaml.pyx /^cdef class CEmitter:$/;" c line:935 language:Python inherits: access:public
CFullLoader dotbot/lib/pyyaml/lib/yaml/cyaml.py /^class CFullLoader(CParser, FullConstructor, Resolver):$/;" c line:30 language:Python inherits:CParser, FullConstructor, Resolver access:public
CFullLoader dotbot/lib/pyyaml/lib3/yaml/cyaml.py /^class CFullLoader(CParser, FullConstructor, Resolver):$/;" c line:30 language:Python inherits:CParser, FullConstructor, Resolver access:public
CHECKUPDATES_DB config/polybar/scripts/checkupdates /^ CHECKUPDATES_DB="${TMPDIR:-\/tmp}\/checkup-db-${USER}\/"$/;" v line:97 language:Sh
CI install /^CI=${CI:-False}$/;" v line:4 language:Sh
CI system README.md /^### CI system$/;" S line:49 language:Markdown section:dotfiles""Most notable
CLASSIFIERS dotbot/lib/pyyaml/setup.py /^CLASSIFIERS = [$/;" v line:23 language:Python access:public
CLT Brewfile.lock.json /^ "CLT": "14.0.0.0.1.1661618636",$/;" s line:2810 language:JSON object:system.macos.monterey
CLT Brewfile.lock.json /^ "CLT": "14.1.0.0.1.1666437224",$/;" s line:2818 language:JSON object:system.macos.ventura
CLoader dotbot/lib/pyyaml/lib/yaml/cyaml.py /^class CLoader(CParser, Constructor, Resolver):$/;" c line:44 language:Python inherits:CParser, Constructor, Resolver access:public
CLoader dotbot/lib/pyyaml/lib3/yaml/cyaml.py /^class CLoader(CParser, Constructor, Resolver):$/;" c line:44 language:Python inherits:CParser, Constructor, Resolver access:public
CONFIG dotbot/tools/git-submodule/install /^CONFIG="install.conf.yaml"$/;" v line:5 language:Sh
CONFIG dotbot/tools/git-submodule/install.ps1 /^$CONFIG = "install.conf.yaml"$/;" v line:3 language:PowerShell
CONFIG dotbot/tools/hg-subrepo/install /^CONFIG="install.conf.yaml"$/;" v line:5 language:Sh
CONFIG dotbot/tools/hg-subrepo/install.ps1 /^$CONFIG = "install.conf.yaml"$/;" v line:3 language:PowerShell
CParser dotbot/lib/pyyaml/ext/_yaml.pyx /^cdef class CParser:$/;" c line:247 language:Python inherits: access:public
CSafeDumper dotbot/lib/pyyaml/lib/yaml/cyaml.py /^class CSafeDumper(CEmitter, SafeRepresenter, Resolver):$/;" c line:68 language:Python inherits:CEmitter, SafeRepresenter, Resolver access:public
CSafeDumper dotbot/lib/pyyaml/lib3/yaml/cyaml.py /^class CSafeDumper(CEmitter, SafeRepresenter, Resolver):$/;" c line:68 language:Python inherits:CEmitter, SafeRepresenter, Resolver access:public
CSafeLoader dotbot/lib/pyyaml/lib/yaml/cyaml.py /^class CSafeLoader(CParser, SafeConstructor, Resolver):$/;" c line:23 language:Python inherits:CParser, SafeConstructor, Resolver access:public
CSafeLoader dotbot/lib/pyyaml/lib3/yaml/cyaml.py /^class CSafeLoader(CParser, SafeConstructor, Resolver):$/;" c line:23 language:Python inherits:CParser, SafeConstructor, Resolver access:public
CTAGS_DIR bin/upgrade /^ CTAGS_DIR="${K_DOTFILES_DIR}\/dependencies\/ctags"$/;" v line:173 language:Sh
CURRENT_VERSION bin/upgrade /^ CURRENT_VERSION="$(git config --file "${HOME}\/.gitconfig.local" --default '-1' --get ct/;" v line:177 language:Sh
CUnsafeLoader dotbot/lib/pyyaml/lib/yaml/cyaml.py /^class CUnsafeLoader(CParser, UnsafeConstructor, Resolver):$/;" c line:37 language:Python inherits:CParser, UnsafeConstructor, Resolver access:public
CUnsafeLoader dotbot/lib/pyyaml/lib3/yaml/cyaml.py /^class CUnsafeLoader(CParser, UnsafeConstructor, Resolver):$/;" c line:37 language:Python inherits:CParser, UnsafeConstructor, Resolver access:public
CanonicalError dotbot/lib/pyyaml/tests/lib/canonical.py /^class CanonicalError(yaml.YAMLError):$/;" c line:4 language:Python inherits:yaml.YAMLError access:public
CanonicalError dotbot/lib/pyyaml/tests/lib3/canonical.py /^class CanonicalError(yaml.YAMLError):$/;" c line:4 language:Python inherits:yaml.YAMLError access:public
CanonicalLoader dotbot/lib/pyyaml/tests/lib/canonical.py /^class CanonicalLoader(CanonicalScanner, CanonicalParser,$/;" c line:317 language:Python inherits:CanonicalScanner, CanonicalParser, yaml.composer.Composer, yaml.constructor.Constructor, yaml.resolver.Resolver access:public
CanonicalLoader dotbot/lib/pyyaml/tests/lib3/canonical.py /^class CanonicalLoader(CanonicalScanner, CanonicalParser,$/;" c line:318 language:Python inherits:CanonicalScanner, CanonicalParser, yaml.composer.Composer, yaml.constructor.Constructor, yaml.resolver.Resolver access:public
CanonicalParser dotbot/lib/pyyaml/tests/lib/canonical.py /^class CanonicalParser:$/;" c line:208 language:Python inherits: access:public
CanonicalParser dotbot/lib/pyyaml/tests/lib3/canonical.py /^class CanonicalParser:$/;" c line:209 language:Python inherits: access:public
CanonicalScanner dotbot/lib/pyyaml/tests/lib/canonical.py /^class CanonicalScanner:$/;" c line:7 language:Python inherits: access:public
CanonicalScanner dotbot/lib/pyyaml/tests/lib3/canonical.py /^class CanonicalScanner:$/;" c line:7 language:Python inherits: access:public
Character Encoding config/iterm.json /^ "Character Encoding" : 4,$/;" n line:98 language:JSON
Clean dotbot/README.md /^### Clean$/;" S line:359 language:Markdown section:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives
Clean dotbot/dotbot/plugins/clean.py /^class Clean(dotbot.Plugin):$/;" c line:5 language:Python inherits:dotbot.Plugin access:public
Close Sessions On End config/iterm.json /^ "Close Sessions On End" : true,$/;" b line:280 language:JSON
CoffeeScript ctags.d/coffescript.ctags /^--langdef=CoffeeScript$/;" l line:1 language:Ctags
CollectionEndEvent dotbot/lib/pyyaml/lib/yaml/events.py /^class CollectionEndEvent(Event):$/;" c line:31 language:Python inherits:Event access:public
CollectionEndEvent dotbot/lib/pyyaml/lib3/yaml/events.py /^class CollectionEndEvent(Event):$/;" c line:31 language:Python inherits:Event access:public
CollectionNode dotbot/lib/pyyaml/lib/yaml/nodes.py /^class CollectionNode(Node):$/;" c line:35 language:Python inherits:Node access:public
CollectionNode dotbot/lib/pyyaml/lib3/yaml/nodes.py /^class CollectionNode(Node):$/;" c line:35 language:Python inherits:Node access:public
CollectionStartEvent dotbot/lib/pyyaml/lib/yaml/events.py /^class CollectionStartEvent(NodeEvent):$/;" c line:21 language:Python inherits:NodeEvent access:public
CollectionStartEvent dotbot/lib/pyyaml/lib3/yaml/events.py /^class CollectionStartEvent(NodeEvent):$/;" c line:21 language:Python inherits:NodeEvent access:public
Color dotbot/dotbot/messenger/color.py /^class Color(object):$/;" c line:1 language:Python inherits:object access:public
Columns config/iterm.json /^ "Columns" : 80,$/;" n line:75 language:JSON
Command config/iterm.json /^ "Command" : "",$/;" s line:65 language:JSON
Command-line Arguments dotbot/README.md /^## Command-line Arguments$/;" s line:433 language:Markdown chapter:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)
Command-line Arguments dotbot/README.md /^- [Command-line Arguments](#command-line-arguments)$/;" l line:11 language:Markdown
Composer dotbot/lib/pyyaml/lib/yaml/composer.py /^class Composer(object):$/;" c line:11 language:Python inherits:object access:public
Composer dotbot/lib/pyyaml/lib3/yaml/composer.py /^class Composer:$/;" c line:11 language:Python inherits: access:public
ComposerError dotbot/lib/pyyaml/ext/_yaml.pyx /^ComposerError = yaml.composer.ComposerError$/;" v line:22 language:Python access:public
ComposerError dotbot/lib/pyyaml/lib/yaml/composer.py /^class ComposerError(MarkedYAMLError):$/;" c line:8 language:Python inherits:MarkedYAMLError access:public
ComposerError dotbot/lib/pyyaml/lib3/yaml/composer.py /^class ComposerError(MarkedYAMLError):$/;" c line:8 language:Python inherits:MarkedYAMLError access:public
ConfigReader dotbot/dotbot/config.py /^class ConfigReader(object):$/;" c line:7 language:Python inherits:object access:public
Configuration dotbot/README.md /^## Configuration$/;" s line:131 language:Markdown chapter:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)
Configuration dotbot/README.md /^- [Configuration](#configuration)$/;" l line:8 language:Markdown
Constructor dotbot/lib/pyyaml/lib/yaml/constructor.py /^class Constructor(UnsafeConstructor):$/;" c line:732 language:Python inherits:UnsafeConstructor access:public
Constructor dotbot/lib/pyyaml/lib3/yaml/constructor.py /^class Constructor(UnsafeConstructor):$/;" c line:720 language:Python inherits:UnsafeConstructor access:public
ConstructorError dotbot/lib/pyyaml/ext/_yaml.pyx /^ConstructorError = yaml.constructor.ConstructorError$/;" v line:23 language:Python access:public
ConstructorError dotbot/lib/pyyaml/lib/yaml/constructor.py /^class ConstructorError(MarkedYAMLError):$/;" c line:18 language:Python inherits:MarkedYAMLError access:public
ConstructorError dotbot/lib/pyyaml/lib3/yaml/constructor.py /^class ConstructorError(MarkedYAMLError):$/;" c line:16 language:Python inherits:MarkedYAMLError access:public
Content (roughly) README.md /^## Content (roughly)$/;" s line:7 language:Markdown chapter:dotfiles
Context dotbot/dotbot/context.py /^class Context(object):$/;" c line:6 language:Python inherits:object access:public
Contributing dotbot/CONTRIBUTING.md /^Contributing$/;" c line:1 language:Markdown
Contributing dotbot/README.md /^## Contributing$/;" s line:455 language:Markdown chapter:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)
Create dotbot/README.md /^### Create$/;" S line:277 language:Markdown section:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives
Create dotbot/dotbot/plugins/create.py /^class Create(dotbot.Plugin):$/;" c line:5 language:Python inherits:dotbot.Plugin access:public
Cursor Color config/iterm.json /^ "Cursor Color" : {$/;" o line:297 language:JSON
Cursor Text Color config/iterm.json /^ "Cursor Text Color" : {$/;" o line:291 language:JSON
Cursor Type config/iterm.json /^ "Cursor Type" : 1,$/;" n line:275 language:JSON
Custom Command config/iterm.json /^ "Custom Command" : "No",$/;" s line:82 language:JSON
Custom Directory config/iterm.json /^ "Custom Directory" : "No",$/;" s line:304 language:JSON
DATA dotbot/lib/pyyaml/tests/lib/test_appliance.py /^DATA = 'tests\/data'$/;" v line:4 language:Python access:public
DATA dotbot/lib/pyyaml/tests/lib3/test_appliance.py /^DATA = 'tests\/data'$/;" v line:4 language:Python access:public
DBPath config/polybar/scripts/checkupdates /^ DBPath="\/var\/lib\/pacman\/"$/;" v line:104 language:Sh
DBPath config/polybar/scripts/checkupdates /^DBPath="$(pacman-conf DBPath)"$/;" v line:102 language:Sh
DEBUG dotbot/dotbot/messenger/level.py /^ DEBUG = 10$/;" v line:3 language:Python class:Level access:public
DEBUG dotbot/test/test /^ DEBUG=true$/;" v line:19 language:Sh
DEBUG dotbot/test/test /^DEBUG=false$/;" v line:15 language:Sh
DEFAULT_MAPPING_TAG dotbot/lib/pyyaml/lib/yaml/resolver.py /^ DEFAULT_MAPPING_TAG = u'tag:yaml.org,2002:map'$/;" v line:16 language:Python class:BaseResolver access:public
DEFAULT_MAPPING_TAG dotbot/lib/pyyaml/lib3/yaml/resolver.py /^ DEFAULT_MAPPING_TAG = 'tag:yaml.org,2002:map'$/;" v line:16 language:Python class:BaseResolver access:public
DEFAULT_SCALAR_TAG dotbot/lib/pyyaml/lib/yaml/resolver.py /^ DEFAULT_SCALAR_TAG = u'tag:yaml.org,2002:str'$/;" v line:14 language:Python class:BaseResolver access:public
DEFAULT_SCALAR_TAG dotbot/lib/pyyaml/lib3/yaml/resolver.py /^ DEFAULT_SCALAR_TAG = 'tag:yaml.org,2002:str'$/;" v line:14 language:Python class:BaseResolver access:public
DEFAULT_SEQUENCE_TAG dotbot/lib/pyyaml/lib/yaml/resolver.py /^ DEFAULT_SEQUENCE_TAG = u'tag:yaml.org,2002:seq'$/;" v line:15 language:Python class:BaseResolver access:public
DEFAULT_SEQUENCE_TAG dotbot/lib/pyyaml/lib3/yaml/resolver.py /^ DEFAULT_SEQUENCE_TAG = 'tag:yaml.org,2002:seq'$/;" v line:15 language:Python class:BaseResolver access:public
DEFAULT_TAGS dotbot/lib/pyyaml/lib/yaml/parser.py /^ DEFAULT_TAGS = {$/;" v line:76 language:Python class:Parser access:public
DEFAULT_TAGS dotbot/lib/pyyaml/lib3/yaml/parser.py /^ DEFAULT_TAGS = {$/;" v line:76 language:Python class:Parser access:public
DEFAULT_TAG_PREFIXES dotbot/lib/pyyaml/lib/yaml/emitter.py /^ DEFAULT_TAG_PREFIXES = {$/;" v line:37 language:Python class:Emitter access:public
DEFAULT_TAG_PREFIXES dotbot/lib/pyyaml/lib3/yaml/emitter.py /^ DEFAULT_TAG_PREFIXES = {$/;" v line:33 language:Python class:Emitter access:public
DESCRIPTION dotbot/lib/pyyaml/setup.py /^DESCRIPTION = "YAML parser and emitter for Python"$/;" v line:4 language:Python access:public
DIR config/polybar/launch.sh /^DIR="${XDG_CONFIG_HOME}\/polybar"$/;" v line:3 language:Sh
DIRECTIVE dotbot/lib/pyyaml/tests/lib/canonical.py /^ DIRECTIVE = u'%YAML 1.1'$/;" v line:91 language:Python class:CanonicalScanner access:public
DIRECTIVE dotbot/lib/pyyaml/tests/lib3/canonical.py /^ DIRECTIVE = '%YAML 1.1'$/;" v line:93 language:Python class:CanonicalScanner access:public
DOTBOT_BIN dotbot/tools/git-submodule/install /^DOTBOT_BIN="bin\/dotbot"$/;" v line:8 language:Sh
DOTBOT_BIN dotbot/tools/git-submodule/install.ps1 /^$DOTBOT_BIN = "bin\/dotbot"$/;" v line:6 language:PowerShell
DOTBOT_BIN dotbot/tools/hg-subrepo/install /^DOTBOT_BIN="bin\/dotbot"$/;" v line:8 language:Sh
DOTBOT_BIN dotbot/tools/hg-subrepo/install.ps1 /^$DOTBOT_BIN = "bin\/dotbot"$/;" v line:6 language:PowerShell
DOTBOT_DIR dotbot/tools/git-submodule/install /^DOTBOT_DIR="dotbot"$/;" v line:6 language:Sh
DOTBOT_DIR dotbot/tools/git-submodule/install.ps1 /^$DOTBOT_DIR = "dotbot"$/;" v line:4 language:PowerShell
DOTBOT_DIR dotbot/tools/hg-subrepo/install /^DOTBOT_DIR="dotbot"$/;" v line:6 language:Sh
DOTBOT_DIR dotbot/tools/hg-subrepo/install.ps1 /^$DOTBOT_DIR = "dotbot"$/;" v line:4 language:PowerShell
DOTBOT_EXEC dotbot/test/test-lib.bash /^DOTBOT_EXEC="${BASEDIR}\/bin\/dotbot"$/;" v line:1 language:Sh
DOTFILES dotbot/test/test-lib.bash /^DOTFILES="${HOME}\/dotfiles"$/;" v line:2 language:Sh
DOWNLOAD_URL dotbot/lib/pyyaml/setup.py /^DOWNLOAD_URL = "https:\/\/pypi.org\/project\/PyYAML\/"$/;" v line:22 language:Python access:public
Debian-based distributions dotbot/test/README.md /^### Debian-based distributions$/;" S line:23 language:Markdown section:Testing""Install Vagrant
Default Bookmark config/iterm.json /^ "Default Bookmark" : "No",$/;" s line:33 language:JSON
Defaults dotbot/README.md /^### Defaults$/;" S line:392 language:Markdown section:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives
Description config/iterm.json /^ "Description" : "Default",$/;" s line:66 language:JSON
Description config/systemd/user/docker-prune.service /^Description=docker system pruner service$/;" k line:2 language:Iniconf section:Unit
Description config/systemd/user/docker-prune.timer /^Description=Run docker prune in intervals$/;" k line:2 language:Iniconf section:Unit
Description config/systemd/user/eos-update-notifier.service /^Description=EOS update notifier service$/;" k line:2 language:Iniconf section:Unit
Description config/systemd/user/eos-update-notifier.timer /^Description=Run EOS update notifier periodically$/;" k line:2 language:Iniconf section:Unit
DirectiveToken dotbot/lib/pyyaml/ext/_yaml.pyx /^DirectiveToken = yaml.tokens.DirectiveToken$/;" v line:30 language:Python access:public
DirectiveToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class DirectiveToken(Token):$/;" c line:17 language:Python inherits:Token access:public
DirectiveToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class DirectiveToken(Token):$/;" c line:17 language:Python inherits:Token access:public
Directives dotbot/README.md /^## Directives$/;" s line:154 language:Markdown chapter:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)
Directives dotbot/README.md /^- [Directives](#directives) ([Link](#link), [Create](#create), [Shell](#shell), [Clean](#clean),/;" l line:9 language:Markdown
Disable Window Resizing config/iterm.json /^ "Disable Window Resizing" : true,$/;" b line:61 language:JSON
DispatchError dotbot/dotbot/dispatcher.py /^class DispatchError(Exception):$/;" c line:72 language:Python inherits:Exception access:public
Dispatcher dotbot/dotbot/dispatcher.py /^class Dispatcher(object):$/;" c line:8 language:Python inherits:object access:public
Distribution dotbot/lib/pyyaml/setup.py /^class Distribution(_Distribution):$/;" c line:109 language:Python inherits:_Distribution access:public
DocumentEndEvent dotbot/lib/pyyaml/ext/_yaml.pyx /^DocumentEndEvent = yaml.events.DocumentEndEvent$/;" v line:52 language:Python access:public
DocumentEndEvent dotbot/lib/pyyaml/lib/yaml/events.py /^class DocumentEndEvent(Event):$/;" c line:54 language:Python inherits:Event access:public
DocumentEndEvent dotbot/lib/pyyaml/lib3/yaml/events.py /^class DocumentEndEvent(Event):$/;" c line:54 language:Python inherits:Event access:public
DocumentEndToken dotbot/lib/pyyaml/ext/_yaml.pyx /^DocumentEndToken = yaml.tokens.DocumentEndToken$/;" v line:32 language:Python access:public
DocumentEndToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class DocumentEndToken(Token):$/;" c line:28 language:Python inherits:Token access:public
DocumentEndToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class DocumentEndToken(Token):$/;" c line:28 language:Python inherits:Token access:public
DocumentStartEvent dotbot/lib/pyyaml/ext/_yaml.pyx /^DocumentStartEvent = yaml.events.DocumentStartEvent$/;" v line:51 language:Python access:public
DocumentStartEvent dotbot/lib/pyyaml/lib/yaml/events.py /^class DocumentStartEvent(Event):$/;" c line:45 language:Python inherits:Event access:public
DocumentStartEvent dotbot/lib/pyyaml/lib3/yaml/events.py /^class DocumentStartEvent(Event):$/;" c line:45 language:Python inherits:Event access:public
DocumentStartToken dotbot/lib/pyyaml/ext/_yaml.pyx /^DocumentStartToken = yaml.tokens.DocumentStartToken$/;" v line:31 language:Python access:public
DocumentStartToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class DocumentStartToken(Token):$/;" c line:25 language:Python inherits:Token access:public
DocumentStartToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class DocumentStartToken(Token):$/;" c line:25 language:Python inherits:Token access:public
Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI) dotbot/README.md /^# Dotbot [![Build Status](https:\/\/github.com\/anishathalye\/dotbot\/workflows\/CI\/badge.svg)]/;" c line:1 language:Markdown
Dumper dotbot/lib/pyyaml/lib/yaml/dumper.py /^class Dumper(Emitter, Serializer, Representer, Resolver):$/;" c line:45 language:Python inherits:Emitter, Serializer, Representer, Resolver access:public
Dumper dotbot/lib/pyyaml/lib3/yaml/dumper.py /^class Dumper(Emitter, Serializer, Representer, Resolver):$/;" c line:45 language:Python inherits:Emitter, Serializer, Representer, Resolver access:public
EOF .installer/git.sh /^ cat >>"${key_config}" <<EOF$/;" h line:107 language:Sh
EOF .installer/install_arch.sh /^ cat >>"${docker_conf}" <<EOF$/;" h line:97 language:Sh
EOF dotbot/test/tests/clean-default.bash /^run_dotbot <<EOF$/;" h line:9 language:Sh
EOF dotbot/test/tests/clean-environment-variable-expansion.bash /^run_dotbot <<EOF$/;" h line:9 language:Sh
EOF dotbot/test/tests/clean-missing.bash /^run_dotbot <<EOF$/;" h line:11 language:Sh
EOF dotbot/test/tests/clean-nonexistent.bash /^run_dotbot <<EOF$/;" h line:5 language:Sh
EOF dotbot/test/tests/clean-outside-force.bash /^run_dotbot <<EOF$/;" h line:9 language:Sh
EOF dotbot/test/tests/clean-outside.bash /^run_dotbot <<EOF$/;" h line:10 language:Sh
EOF dotbot/test/tests/clean-recursive.bash /^run_dotbot <<EOF$/;" h line:12 language:Sh
EOF dotbot/test/tests/clean-recursive.bash /^run_dotbot <<EOF$/;" h line:24 language:Sh
EOF dotbot/test/tests/config-blank.bash /^run_dotbot <<EOF$/;" h line:5 language:Sh
EOF dotbot/test/tests/config-empty.bash /^run_dotbot <<EOF$/;" h line:5 language:Sh
EOF dotbot/test/tests/config-json-tabs.bash /^run_dotbot_json <<EOF$/;" h line:9 language:Sh
EOF dotbot/test/tests/config-json.bash /^run_dotbot_json <<EOF$/;" h line:9 language:Sh
EOF dotbot/test/tests/create-mode.bash /^run_dotbot -v <<EOF$/;" h line:5 language:Sh
EOF dotbot/test/tests/create.bash /^run_dotbot <<EOF$/;" h line:18 language:Sh
EOF dotbot/test/tests/create.bash /^run_dotbot <<EOF$/;" h line:5 language:Sh
EOF dotbot/test/tests/defaults.bash /^run_dotbot <<EOF$/;" h line:12 language:Sh
EOF dotbot/test/tests/defaults.bash /^run_dotbot <<EOF$/;" h line:23 language:Sh
EOF dotbot/test/tests/defaults.bash /^run_dotbot <<EOF$/;" h line:38 language:Sh
EOF dotbot/test/tests/defaults.bash /^run_dotbot <<EOF$/;" h line:48 language:Sh
EOF dotbot/test/tests/except-multi.bash /^run_dotbot --except clean shell <<EOF$/;" h line:9 language:Sh
EOF dotbot/test/tests/except.bash /^run_dotbot --except link <<EOF$/;" h line:9 language:Sh
EOF dotbot/test/tests/except.bash /^run_dotbot --except shell <<EOF$/;" h line:22 language:Sh
EOF dotbot/test/tests/exit-on-failure.bash /^run_dotbot -x <<EOF$/;" h line:11 language:Sh
EOF dotbot/test/tests/exit-on-failure.bash /^run_dotbot -x <<EOF$/;" h line:20 language:Sh
EOF dotbot/test/tests/find-python-executable.bash /^PATH="$HOME\/tmp_bin" run_dotbot <<EOF$/;" h line:22 language:Sh
EOF dotbot/test/tests/find-python-executable.bash /^PATH="$HOME\/tmp_bin" run_dotbot <<EOF$/;" h line:37 language:Sh
EOF dotbot/test/tests/find-python-executable.bash /^PATH="$HOME\/tmp_bin" run_dotbot <<EOF$/;" h line:47 language:Sh
EOF dotbot/test/tests/find-python-executable.bash /^PATH="$HOME\/tmp_bin" run_dotbot <<EOF$/;" h line:57 language:Sh
EOF dotbot/test/tests/find-python-executable.bash /^cat >> ~\/tmp_bin\/python <<EOF$/;" h line:30 language:Sh
EOF dotbot/test/tests/link-canonicalize.bash /^cat > "${DOTFILES}\/${INSTALL_CONF}" <<EOF$/;" h line:10 language:Sh
EOF dotbot/test/tests/link-default-source.bash /^run_dotbot <<EOF$/;" h line:10 language:Sh
EOF dotbot/test/tests/link-environment-user-expansion-target.bash /^run_dotbot <<EOF$/;" h line:9 language:Sh
EOF dotbot/test/tests/link-environment-variable-expansion-source-extended.bash /^run_dotbot <<EOF$/;" h line:10 language:Sh
EOF dotbot/test/tests/link-environment-variable-expansion-source.bash /^run_dotbot <<EOF$/;" h line:10 language:Sh
EOF dotbot/test/tests/link-environment-variable-expansion-target.bash /^run_dotbot <<EOF$/;" h line:13 language:Sh
EOF dotbot/test/tests/link-environment-variable-unset.bash /^run_dotbot <<EOF$/;" h line:10 language:Sh
EOF dotbot/test/tests/link-force-leaves-when-nonexistent.bash /^run_dotbot <<EOF$/;" h line:10 language:Sh
EOF dotbot/test/tests/link-force-overwrite-symlink.bash /^run_dotbot <<EOF$/;" h line:11 language:Sh
EOF dotbot/test/tests/link-glob-ambiguous.bash /^run_dotbot <<EOF$/;" h line:22 language:Sh
EOF dotbot/test/tests/link-glob-ambiguous.bash /^run_dotbot <<EOF$/;" h line:35 language:Sh
EOF dotbot/test/tests/link-glob-ambiguous.bash /^run_dotbot <<EOF$/;" h line:9 language:Sh
EOF dotbot/test/tests/link-glob-exclude.bash /^run_dotbot -v <<EOF$/;" h line:102 language:Sh
EOF dotbot/test/tests/link-glob-exclude.bash /^run_dotbot -v <<EOF$/;" h line:13 language:Sh
EOF dotbot/test/tests/link-glob-exclude.bash /^run_dotbot -v <<EOF$/;" h line:41 language:Sh
EOF dotbot/test/tests/link-glob-exclude.bash /^run_dotbot -v <<EOF$/;" h line:70 language:Sh
EOF dotbot/test/tests/link-glob-multi-star.bash /^run_dotbot -v <<EOF$/;" h line:14 language:Sh
EOF dotbot/test/tests/link-glob-patterns.bash /^run_dotbot -v <<EOF$/;" h line:15 language:Sh
EOF dotbot/test/tests/link-glob-patterns.bash /^run_dotbot -v <<EOF$/;" h line:33 language:Sh
EOF dotbot/test/tests/link-glob-patterns.bash /^run_dotbot -v <<EOF$/;" h line:51 language:Sh
EOF dotbot/test/tests/link-glob-patterns.bash /^run_dotbot -v <<EOF$/;" h line:71 language:Sh
EOF dotbot/test/tests/link-glob-patterns.bash /^run_dotbot -v <<EOF$/;" h line:91 language:Sh
EOF dotbot/test/tests/link-glob-recursive.bash /^run_dotbot -v <<EOF$/;" h line:26 language:Sh
EOF dotbot/test/tests/link-glob-recursive.bash /^run_dotbot -v <<EOF$/;" h line:6 language:Sh
EOF dotbot/test/tests/link-glob.bash /^run_dotbot -v <<EOF$/;" h line:12 language:Sh
EOF dotbot/test/tests/link-glob.bash /^run_dotbot -v <<EOF$/;" h line:33 language:Sh
EOF dotbot/test/tests/link-glob.bash /^run_dotbot -v <<EOF$/;" h line:57 language:Sh
EOF dotbot/test/tests/link-glob.bash /^run_dotbot -v <<EOF$/;" h line:81 language:Sh
EOF dotbot/test/tests/link-if.bash /^run_dotbot <<EOF$/;" h line:10 language:Sh
EOF dotbot/test/tests/link-if.bash /^run_dotbot <<EOF$/;" h line:35 language:Sh
EOF dotbot/test/tests/link-ignore-missing.bash /^run_dotbot <<EOF$/;" h line:13 language:Sh
EOF dotbot/test/tests/link-ignore-missing.bash /^run_dotbot <<EOF$/;" h line:5 language:Sh
EOF dotbot/test/tests/link-leaves-file.bash /^run_dotbot <<EOF$/;" h line:10 language:Sh
EOF dotbot/test/tests/link-no-canonicalize.bash /^cat > "${DOTFILES}\/${INSTALL_CONF}" <<EOF$/;" h line:11 language:Sh
EOF dotbot/test/tests/link-no-canonicalize.bash /^cat > "${DOTFILES}\/${INSTALL_CONF}" <<EOF$/;" h line:27 language:Sh
EOF dotbot/test/tests/link-prefix.bash /^run_dotbot -v <<EOF$/;" h line:12 language:Sh
EOF dotbot/test/tests/link-relative.bash /^run_dotbot <<EOF$/;" h line:11 language:Sh
EOF dotbot/test/tests/link-relink-leaves-file.bash /^run_dotbot <<EOF$/;" h line:10 language:Sh
EOF dotbot/test/tests/link-relink-overwrite-symlink.bash /^run_dotbot <<EOF$/;" h line:11 language:Sh
EOF dotbot/test/tests/link-relink-relative-leaves-file.bash /^run_dotbot <<EOF$/;" h line:10 language:Sh
EOF dotbot/test/tests/link-relink-relative-leaves-file.bash /^run_dotbot <<EOF$/;" h line:23 language:Sh
EOF dotbot/test/tests/only-defaults.bash /^run_dotbot --only link <<EOF$/;" h line:9 language:Sh
EOF dotbot/test/tests/only-multi.bash /^run_dotbot --only clean shell <<EOF$/;" h line:9 language:Sh
EOF dotbot/test/tests/only.bash /^run_dotbot --only link <<EOF$/;" h line:22 language:Sh
EOF dotbot/test/tests/only.bash /^run_dotbot --only shell <<EOF$/;" h line:9 language:Sh
EOF dotbot/test/tests/plugin-dir.bash /^cat > ${DOTFILES}\/plugins\/test.py <<EOF$/;" h line:6 language:Sh
EOF dotbot/test/tests/plugin-dir.bash /^run_dotbot --plugin-dir ${DOTFILES}\/plugins <<EOF$/;" h line:22 language:Sh
EOF dotbot/test/tests/plugin-disable-builtin.bash /^run_dotbot --disable-built-in-plugins <<EOF$/;" h line:9 language:Sh
EOF dotbot/test/tests/plugin.bash /^cat > ${DOTFILES}\/test.py <<EOF$/;" h line:32 language:Sh
EOF dotbot/test/tests/plugin.bash /^cat > ${DOTFILES}\/test.py <<EOF$/;" h line:5 language:Sh
EOF dotbot/test/tests/plugin.bash /^run_dotbot --plugin ${DOTFILES}\/test.py <<EOF$/;" h line:21 language:Sh
EOF dotbot/test/tests/plugin.bash /^run_dotbot --plugin ${DOTFILES}\/test.py <<EOF$/;" h line:57 language:Sh
EOF dotbot/test/tests/shell-allow-stdout.bash /^(run_dotbot | grep "^apple") <<EOF$/;" h line:5 language:Sh
EOF dotbot/test/tests/shell-cli-override-config.bash /^(run_dotbot -v | (grep "^apple")) <<EOF$/;" h line:68 language:Sh
EOF dotbot/test/tests/shell-cli-override-config.bash /^(run_dotbot -v | (grep "^apple")) <<EOF$/;" h line:75 language:Sh
EOF dotbot/test/tests/shell-cli-override-config.bash /^(run_dotbot -vv 2>&1 | (grep "^apple")) <<EOF$/;" h line:40 language:Sh
EOF dotbot/test/tests/shell-cli-override-config.bash /^(run_dotbot -vv 2>&1 | (grep "^apple")) <<EOF$/;" h line:47 language:Sh
EOF dotbot/test/tests/shell-cli-override-config.bash /^(run_dotbot -vv 2>&1 | (grep "^apple")) <<EOF$/;" h line:56 language:Sh
EOF dotbot/test/tests/shell-cli-override-config.bash /^(run_dotbot -vv | (grep "^apple")) <<EOF$/;" h line:13 language:Sh
EOF dotbot/test/tests/shell-cli-override-config.bash /^(run_dotbot -vv | (grep "^apple")) <<EOF$/;" h line:22 language:Sh
EOF dotbot/test/tests/shell-cli-override-config.bash /^(run_dotbot -vv | (grep "^apple")) <<EOF$/;" h line:33 language:Sh
EOF dotbot/test/tests/shell-cli-override-config.bash /^(run_dotbot -vv | (grep "^apple")) <<EOF$/;" h line:5 language:Sh
EOF dotbot/test/tests/shell-compact-stdout.bash /^(run_dotbot | grep "^apple") <<EOF$/;" h line:15 language:Sh
EOF dotbot/test/tests/shell-compact-stdout.bash /^(run_dotbot | grep "^apple") <<EOF$/;" h line:5 language:Sh
EOF dotbot/test/tests/shell-disables-stdout.bash /^(run_dotbot | (! grep "^banana")) <<EOF$/;" h line:5 language:Sh
EOF dotbot/test/tests/shell-override-default.bash /^(run_dotbot | (! grep "^apple")) <<EOF$/;" h line:5 language:Sh
EOF dotbot/test/tests/shell-quiet.bash /^(run_dotbot | (! grep "echo banana")) <<EOF$/;" h line:15 language:Sh
EOF dotbot/test/tests/shell-quiet.bash /^(run_dotbot | grep "echo banana") <<EOF$/;" h line:25 language:Sh
EOF dotbot/test/tests/shell-quiet.bash /^(run_dotbot | grep "echo banana") <<EOF$/;" h line:6 language:Sh
EOF dotbot/test/tests/shim.bash /^cat > ${DOTFILES}\/install.conf.yaml <<EOF$/;" h line:13 language:Sh
EOL npmrc.sh /^ cat >>"$HOME\/.npmrc" <<EOL$/;" h line:10 language:Sh
ERROR dotbot/dotbot/messenger/level.py /^ ERROR = 40$/;" v line:7 language:Python class:Level access:public
ESCAPE_CODES dotbot/lib/pyyaml/lib/yaml/scanner.py /^ ESCAPE_CODES = {$/;" v line:1185 language:Python class:Scanner access:public
ESCAPE_CODES dotbot/lib/pyyaml/lib3/yaml/scanner.py /^ ESCAPE_CODES = {$/;" v line:1179 language:Python class:Scanner access:public
ESCAPE_REPLACEMENTS dotbot/lib/pyyaml/lib/yaml/emitter.py /^ ESCAPE_REPLACEMENTS = {$/;" v line:915 language:Python class:Emitter access:public
ESCAPE_REPLACEMENTS dotbot/lib/pyyaml/lib/yaml/scanner.py /^ ESCAPE_REPLACEMENTS = {$/;" v line:1164 language:Python class:Scanner access:public
ESCAPE_REPLACEMENTS dotbot/lib/pyyaml/lib3/yaml/emitter.py /^ ESCAPE_REPLACEMENTS = {$/;" v line:908 language:Python class:Emitter access:public
ESCAPE_REPLACEMENTS dotbot/lib/pyyaml/lib3/yaml/scanner.py /^ ESCAPE_REPLACEMENTS = {$/;" v line:1158 language:Python class:Scanner access:public
Emitter dotbot/lib/pyyaml/lib/yaml/emitter.py /^class Emitter(object):$/;" c line:35 language:Python inherits:object access:public
Emitter dotbot/lib/pyyaml/lib3/yaml/emitter.py /^class Emitter:$/;" c line:31 language:Python inherits: access:public
EmitterError dotbot/lib/pyyaml/ext/_yaml.pyx /^EmitterError = yaml.emitter.EmitterError$/;" v line:24 language:Python access:public
EmitterError dotbot/lib/pyyaml/lib/yaml/emitter.py /^class EmitterError(YAMLError):$/;" c line:18 language:Python inherits:YAMLError access:public
EmitterError dotbot/lib/pyyaml/lib3/yaml/emitter.py /^class EmitterError(YAMLError):$/;" c line:14 language:Python inherits:YAMLError access:public
Environment config/systemd/user/eos-update-notifier.service /^Environment=DISPLAY=:0$/;" k line:6 language:Iniconf section:Service
ErrorActionPreference dotbot/tools/git-submodule/install.ps1 /^ $ErrorActionPreference = "Stop" }) {$/;" v line:17 language:PowerShell
ErrorActionPreference dotbot/tools/git-submodule/install.ps1 /^ if (& { $ErrorActionPreference = "SilentlyContinue"$/;" v line:15 language:PowerShell
ErrorActionPreference dotbot/tools/git-submodule/install.ps1 /^$ErrorActionPreference = "Stop"$/;" v line:1 language:PowerShell
ErrorActionPreference dotbot/tools/hg-subrepo/install.ps1 /^ $ErrorActionPreference = "Stop" }) {$/;" v line:16 language:PowerShell
ErrorActionPreference dotbot/tools/hg-subrepo/install.ps1 /^ if (& { $ErrorActionPreference = "SilentlyContinue"$/;" v line:14 language:PowerShell
ErrorActionPreference dotbot/tools/hg-subrepo/install.ps1 /^$ErrorActionPreference = "Stop"$/;" v line:1 language:PowerShell
Event dotbot/lib/pyyaml/lib/yaml/events.py /^class Event(object):$/;" c line:4 language:Python inherits:object access:public
Event dotbot/lib/pyyaml/lib3/yaml/events.py /^class Event(object):$/;" c line:4 language:Python inherits:object access:public
EventsLoader dotbot/lib/pyyaml/tests/lib/test_emitter.py /^class EventsLoader(yaml.Loader):$/;" c line:66 language:Python inherits:yaml.Loader access:public
EventsLoader dotbot/lib/pyyaml/tests/lib3/test_emitter.py /^class EventsLoader(yaml.Loader):$/;" c line:66 language:Python inherits:yaml.Loader access:public
Example dotbot/README.md /^#### Example$/;" t line:202 language:Markdown subsection:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives""Link
Example dotbot/README.md /^#### Example$/;" t line:299 language:Markdown subsection:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives""Create
Example dotbot/README.md /^#### Example$/;" t line:342 language:Markdown subsection:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives""Shell
Example dotbot/README.md /^#### Example$/;" t line:380 language:Markdown subsection:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives""Clean
Example dotbot/README.md /^#### Example$/;" t line:407 language:Markdown subsection:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives""Defaults
ExecStart config/systemd/user/docker-prune.service /^ExecStart=docker system prune -a -f ; docker volume prune -f$/;" k line:7 language:Iniconf section:Service
ExecStart config/systemd/user/eos-update-notifier.service /^ExecStart=\/usr\/bin\/eos-update-notifier -systemd$/;" k line:7 language:Iniconf section:Service
ExecStartPre config/systemd/user/docker-prune.service /^ExecStartPre=echo "Prunning docker"$/;" k line:6 language:Iniconf section:Service
Extension dotbot/lib/pyyaml/setup.py /^class Extension(_Extension):$/;" c line:150 language:Python inherits:_Extension access:public
Feature Requests dotbot/CONTRIBUTING.md /^Feature Requests$/;" s line:10 language:Markdown chapter:Contributing
FixedOffset dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class FixedOffset(datetime.tzinfo):$/;" c line:227 language:Python function:_make_objects file: inherits:datetime.tzinfo access:private
FixedOffset dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class FixedOffset(datetime.tzinfo):$/;" c line:214 language:Python function:_make_objects file: inherits:datetime.tzinfo access:private
Flashing Bell config/iterm.json /^ "Flashing Bell" : false,$/;" b line:283 language:JSON
FlowEntryToken dotbot/lib/pyyaml/ext/_yaml.pyx /^FlowEntryToken = yaml.tokens.FlowEntryToken$/;" v line:43 language:Python access:public
FlowEntryToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class FlowEntryToken(Token):$/;" c line:72 language:Python inherits:Token access:public
FlowEntryToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class FlowEntryToken(Token):$/;" c line:72 language:Python inherits:Token access:public
FlowMappingEndToken dotbot/lib/pyyaml/ext/_yaml.pyx /^FlowMappingEndToken = yaml.tokens.FlowMappingEndToken$/;" v line:39 language:Python access:public
FlowMappingEndToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class FlowMappingEndToken(Token):$/;" c line:60 language:Python inherits:Token access:public
FlowMappingEndToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class FlowMappingEndToken(Token):$/;" c line:60 language:Python inherits:Token access:public
FlowMappingStartToken dotbot/lib/pyyaml/ext/_yaml.pyx /^FlowMappingStartToken = yaml.tokens.FlowMappingStartToken$/;" v line:37 language:Python access:public
FlowMappingStartToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class FlowMappingStartToken(Token):$/;" c line:54 language:Python inherits:Token access:public
FlowMappingStartToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class FlowMappingStartToken(Token):$/;" c line:54 language:Python inherits:Token access:public
FlowSequenceEndToken dotbot/lib/pyyaml/ext/_yaml.pyx /^FlowSequenceEndToken = yaml.tokens.FlowSequenceEndToken$/;" v line:38 language:Python access:public
FlowSequenceEndToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class FlowSequenceEndToken(Token):$/;" c line:57 language:Python inherits:Token access:public
FlowSequenceEndToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class FlowSequenceEndToken(Token):$/;" c line:57 language:Python inherits:Token access:public
FlowSequenceStartToken dotbot/lib/pyyaml/ext/_yaml.pyx /^FlowSequenceStartToken = yaml.tokens.FlowSequenceStartToken$/;" v line:36 language:Python access:public
FlowSequenceStartToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class FlowSequenceStartToken(Token):$/;" c line:51 language:Python inherits:Token access:public
FlowSequenceStartToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class FlowSequenceStartToken(Token):$/;" c line:51 language:Python inherits:Token access:public
Foreground Color config/iterm.json /^ "Foreground Color" : {$/;" o line:54 language:JSON
Format dotbot/README.md /^#### Format$/;" t line:165 language:Markdown subsection:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives""Link
Format dotbot/README.md /^#### Format$/;" t line:283 language:Markdown subsection:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives""Create
Format dotbot/README.md /^#### Format$/;" t line:316 language:Markdown subsection:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives""Shell
Format dotbot/README.md /^#### Format$/;" t line:366 language:Markdown subsection:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives""Clean
Format dotbot/README.md /^#### Format$/;" t line:402 language:Markdown subsection:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives""Defaults
Full Example dotbot/README.md /^### Full Example$/;" S line:101 language:Markdown section:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Getting Started
FullConstructor dotbot/lib/pyyaml/lib/yaml/constructor.py /^class FullConstructor(SafeConstructor):$/;" c line:497 language:Python inherits:SafeConstructor access:public
FullConstructor dotbot/lib/pyyaml/lib3/yaml/constructor.py /^class FullConstructor(SafeConstructor):$/;" c line:474 language:Python inherits:SafeConstructor access:public
FullLoader dotbot/lib/pyyaml/lib/yaml/loader.py /^class FullLoader(Reader, Scanner, Parser, Composer, FullConstructor, Resolver):$/;" c line:21 language:Python inherits:Reader, Scanner, Parser, Composer, FullConstructor, Resolver access:public
FullLoader dotbot/lib/pyyaml/lib3/yaml/loader.py /^class FullLoader(Reader, Scanner, Parser, Composer, FullConstructor, Resolver):$/;" c line:21 language:Python inherits:Reader, Scanner, Parser, Composer, FullConstructor, Resolver access:public
GREEN config/polybar/scripts/checkupdates /^ GREEN="${BOLD}$(tput setaf 2)"$/;" v line:65 language:Sh
GREEN config/polybar/scripts/checkupdates /^ GREEN="${BOLD}\\e[1;32m"$/;" v line:72 language:Sh
GREEN dotbot/dotbot/messenger/color.py /^ GREEN = "\\033[92m"$/;" v line:5 language:Python class:Color access:public
GetYamlIndent config/nvim/ftplugin/yaml.vim /^function! GetYamlIndent()$/;" f line:16 language:Vim signature:()
Getting Started dotbot/README.md /^## Getting Started$/;" s line:33 language:Markdown chapter:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)
Getting Started dotbot/README.md /^- [Getting Started](#getting-started)$/;" l line:7 language:Markdown
Green Component config/iterm.json /^ "Green Component" : 0,$/;" n line:17 language:JSON object:Ansi 5 Color
Green Component config/iterm.json /^ "Green Component" : 0,$/;" n line:3 language:JSON object:Ansi 4 Color
Green Component config/iterm.json /^ "Green Component" : 0,$/;" n line:306 language:JSON object:Ansi 0 Color
Green Component config/iterm.json /^ "Green Component" : 0,$/;" n line:311 language:JSON object:Ansi 1 Color
Green Component config/iterm.json /^ "Green Component" : 0,$/;" n line:89 language:JSON object:Selected Text Color
Green Component config/iterm.json /^ "Green Component" : 0,$/;" n line:94 language:JSON object:Background Color
Green Component config/iterm.json /^ "Green Component" : 0.3333333432674408,$/;" n line:11 language:JSON object:Ansi 12 Color
Green Component config/iterm.json /^ "Green Component" : 0.3333333432674408,$/;" n line:327 language:JSON object:Ansi 8 Color
Green Component config/iterm.json /^ "Green Component" : 0.3333333432674408,$/;" n line:332 language:JSON object:Ansi 9 Color
Green Component config/iterm.json /^ "Green Component" : 0.3333333432674408,$/;" n line:78 language:JSON object:Ansi 13 Color
Green Component config/iterm.json /^ "Green Component" : 0.73333334922790527,$/;" n line:28 language:JSON object:Ansi 2 Color
Green Component config/iterm.json /^ "Green Component" : 0.73333334922790527,$/;" n line:298 language:JSON object:Cursor Color
Green Component config/iterm.json /^ "Green Component" : 0.73333334922790527,$/;" n line:317 language:JSON object:Ansi 3 Color
Green Component config/iterm.json /^ "Green Component" : 0.73333334922790527,$/;" n line:322 language:JSON object:Ansi 7 Color
Green Component config/iterm.json /^ "Green Component" : 0.73333334922790527,$/;" n line:338 language:JSON object:Ansi 6 Color
Green Component config/iterm.json /^ "Green Component" : 0.73333334922790527,$/;" n line:55 language:JSON object:Foreground Color
Green Component config/iterm.json /^ "Green Component" : 0.8353000283241272,$/;" n line:70 language:JSON object:Selection Color
Green Component config/iterm.json /^ "Green Component" : 1,$/;" n line:100 language:JSON object:Ansi 11 Color
Green Component config/iterm.json /^ "Green Component" : 1,$/;" n line:22 language:JSON object:Bold Color
Green Component config/iterm.json /^ "Green Component" : 1,$/;" n line:286 language:JSON object:Ansi 14 Color
Green Component config/iterm.json /^ "Green Component" : 1,$/;" n line:292 language:JSON object:Cursor Text Color
Green Component config/iterm.json /^ "Green Component" : 1,$/;" n line:37 language:JSON object:Ansi 10 Color
Green Component config/iterm.json /^ "Green Component" : 1,$/;" n line:50 language:JSON object:Ansi 15 Color
Guid config/iterm.json /^ "Guid" : "B0A44791-3B8F-4B5E-AD12-215CA90B8C76",$/;" s line:303 language:JSON
HOMEBREW_PREFIX Brewfile.lock.json /^ "HOMEBREW_PREFIX": "\/usr\/local",$/;" s line:2808 language:JSON object:system.macos.monterey
HOMEBREW_PREFIX Brewfile.lock.json /^ "HOMEBREW_PREFIX": "\/usr\/local",$/;" s line:2816 language:JSON object:system.macos.ventura
HOMEBREW_VERSION Brewfile.lock.json /^ "HOMEBREW_VERSION": "3.6.12",$/;" s line:2807 language:JSON object:system.macos.monterey
HOMEBREW_VERSION Brewfile.lock.json /^ "HOMEBREW_VERSION": "3.6.12",$/;" s line:2815 language:JSON object:system.macos.ventura
Help config/nvim/editor.vim /^ command! -nargs=* -complete=help Help vertical belowright help <args>$/;" c line:179 language:Vim
HomeBrew dotbot/test/README.md /^e.g. using [HomeBrew](https:\/\/brew.sh\/):$/;" l line:32 language:Markdown
Homebrew/homebrew-core Brewfile.lock.json /^ "Homebrew\/homebrew-core": "96d07122246ba1b368dcdfaa413c629f57206488",$/;" s line:2817 language:JSON object:system.macos.ventura
Homebrew/homebrew-core Brewfile.lock.json /^ "Homebrew\/homebrew-core": "c5fd89be03553694e0f130c08a4329890873cede",$/;" s line:2809 language:JSON object:system.macos.monterey
Horizontal Spacing config/iterm.json /^ "Horizontal Spacing" : 1,$/;" n line:315 language:JSON
IFS dotbot/test/tests/find-python-executable.bash /^ IFS=:$/;" v line:8 language:Sh
INFO dotbot/dotbot/messenger/level.py /^ INFO = 20$/;" v line:5 language:Python class:Level access:public
INSTALL_CONF dotbot/test/test-lib.bash /^INSTALL_CONF='install.conf.yaml'$/;" v line:3 language:Sh
INSTALL_CONF_JSON dotbot/test/test-lib.bash /^INSTALL_CONF_JSON='install.conf.json'$/;" v line:4 language:Sh
Icon config/iterm.json /^ "Icon" : 1,$/;" n line:41 language:JSON
Idle Code config/iterm.json /^ "Idle Code" : 0,$/;" n line:76 language:JSON
InitArgs dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class InitArgs(AnInstance):$/;" c line:161 language:Python function:_make_objects file: inherits:AnInstance access:private
InitArgsWithState dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class InitArgsWithState(AnInstance):$/;" c line:167 language:Python function:_make_objects file: inherits:AnInstance access:private
Inspirations / credits README.md /^## Inspirations \/ credits $/;" s line:54 language:Markdown chapter:dotfiles
Install config/systemd/user/docker-prune.service /^[Install]$/;" s line:9 language:Iniconf
Install config/systemd/user/docker-prune.timer /^[Install]$/;" s line:9 language:Iniconf
Install config/systemd/user/eos-update-notifier.service /^[Install]$/;" s line:9 language:Iniconf
Install config/systemd/user/eos-update-notifier.timer /^[Install]$/;" s line:9 language:Iniconf
Install Dotbot dependencies dotbot/test/README.md /^Install Dotbot dependencies$/;" s line:11 language:Markdown chapter:Testing
Install Vagrant dotbot/test/README.md /^Install Vagrant$/;" s line:20 language:Markdown chapter:Testing
Install dependencies config/nvim/.github/workflows/ci.yml /^ - name: Install dependencies$/;" t line:13 language:ansible
Integrate with Existing Dotfiles dotbot/README.md /^### Integrate with Existing Dotfiles$/;" S line:42 language:Markdown section:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Getting Started
Invoke-Exe dotbot/lib/pyyaml/packaging/build/appveyor.ps1 /^Function Invoke-Exe([scriptblock]$sb) {$/;" f line:8 language:PowerShell signature:([scriptblock] $sb)
Jobs to Ignore config/iterm.json /^ "Jobs to Ignore" : [$/;" a line:43 language:JSON
K_DOTFILES_DIR bin/upgrade /^K_DOTFILES_DIR="${K_DOTFILES_DIR:-${HOME}\/.dotfiles}"$/;" v line:3 language:Sh
KeyToken dotbot/lib/pyyaml/ext/_yaml.pyx /^KeyToken = yaml.tokens.KeyToken$/;" v line:40 language:Python access:public
KeyToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class KeyToken(Token):$/;" c line:63 language:Python inherits:Token access:public
KeyToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class KeyToken(Token):$/;" c line:63 language:Python inherits:Token access:public
Keyboard Map config/iterm.json /^ "Keyboard Map" : {$/;" o line:106 language:JSON
LIBYAML_CHECK dotbot/lib/pyyaml/setup.py /^LIBYAML_CHECK = """$/;" v line:44 language:Python access:public
LICENSE dotbot/lib/pyyaml/setup.py /^LICENSE = "MIT"$/;" v line:19 language:Python access:public
LONG_DESCRIPTION dotbot/lib/pyyaml/setup.py /^LONG_DESCRIPTION = """\\$/;" v line:5 language:Python access:public
LOWINFO dotbot/dotbot/messenger/level.py /^ LOWINFO = 15$/;" v line:4 language:Python class:Level access:public
Label config/iterm.json /^ "Label" : "",$/;" s line:248 language:JSON object:Keyboard Map.0x2e-0x100000-0x2f
Level dotbot/dotbot/messenger/level.py /^class Level(object):$/;" c line:1 language:Python inherits:object access:public
License dotbot/README.md /^## License$/;" s line:460 language:Markdown chapter:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)
Link dotbot/README.md /^### Link$/;" S line:159 language:Markdown section:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives
Link dotbot/dotbot/plugins/link.py /^class Link(dotbot.Plugin):$/;" c line:10 language:Python inherits:dotbot.Plugin access:public
Loader dotbot/lib/pyyaml/lib/yaml/loader.py /^class Loader(Reader, Scanner, Parser, Composer, Constructor, Resolver):$/;" c line:41 language:Python inherits:Reader, Scanner, Parser, Composer, Constructor, Resolver access:public
Loader dotbot/lib/pyyaml/lib3/yaml/loader.py /^class Loader(Reader, Scanner, Parser, Composer, Constructor, Resolver):$/;" c line:41 language:Python inherits:Reader, Scanner, Parser, Composer, Constructor, Resolver access:public
MAGENTA dotbot/dotbot/messenger/color.py /^ MAGENTA = "\\033[95m"$/;" v line:8 language:Python class:Color access:public
MONITORS config/polybar/launch.sh /^MONITORS="${monitors}" polybar bottom -r -c "${DIR}\/config.ini" >>"${bottom_log}" 2>&1 &$/;" v line:20 language:Sh
MONITORS config/polybar/launch.sh /^MONITORS="${monitors}" polybar top -r -c "${DIR}\/config.ini" >>"${top_log}" 2>&1 &$/;" v line:19 language:Sh
MappingEndEvent dotbot/lib/pyyaml/ext/_yaml.pyx /^MappingEndEvent = yaml.events.MappingEndEvent$/;" v line:58 language:Python access:public
MappingEndEvent dotbot/lib/pyyaml/lib/yaml/events.py /^class MappingEndEvent(CollectionEndEvent):$/;" c line:84 language:Python inherits:CollectionEndEvent access:public
MappingEndEvent dotbot/lib/pyyaml/lib3/yaml/events.py /^class MappingEndEvent(CollectionEndEvent):$/;" c line:84 language:Python inherits:CollectionEndEvent access:public
MappingNode dotbot/lib/pyyaml/ext/_yaml.pyx /^MappingNode = yaml.nodes.MappingNode$/;" v line:62 language:Python access:public
MappingNode dotbot/lib/pyyaml/lib/yaml/nodes.py /^class MappingNode(CollectionNode):$/;" c line:47 language:Python inherits:CollectionNode access:public
MappingNode dotbot/lib/pyyaml/lib3/yaml/nodes.py /^class MappingNode(CollectionNode):$/;" c line:47 language:Python inherits:CollectionNode access:public
MappingStartEvent dotbot/lib/pyyaml/ext/_yaml.pyx /^MappingStartEvent = yaml.events.MappingStartEvent$/;" v line:57 language:Python access:public
MappingStartEvent dotbot/lib/pyyaml/lib/yaml/events.py /^class MappingStartEvent(CollectionStartEvent):$/;" c line:81 language:Python inherits:CollectionStartEvent access:public
MappingStartEvent dotbot/lib/pyyaml/lib3/yaml/events.py /^class MappingStartEvent(CollectionStartEvent):$/;" c line:81 language:Python inherits:CollectionStartEvent access:public
Mark dotbot/lib/pyyaml/ext/_yaml.pyx /^cdef class Mark:$/;" c line:64 language:Python inherits: access:public
Mark dotbot/lib/pyyaml/lib/yaml/error.py /^class Mark(object):$/;" c line:4 language:Python inherits:object access:public
Mark dotbot/lib/pyyaml/lib3/yaml/error.py /^class Mark:$/;" c line:4 language:Python inherits: access:public
Mark McGwire dotbot/lib/pyyaml/examples/pygments-lexer/example.yaml /^ name: Mark McGwire$/;" p line:33 language:AnsiblePlaybook
MarkedYAMLError dotbot/lib/pyyaml/lib/yaml/error.py /^class MarkedYAMLError(YAMLError):$/;" c line:48 language:Python inherits:YAMLError access:public
MarkedYAMLError dotbot/lib/pyyaml/lib3/yaml/error.py /^class MarkedYAMLError(YAMLError):$/;" c line:48 language:Python inherits:YAMLError access:public
Messenger dotbot/dotbot/messenger/messenger.py /^class Messenger(with_metaclass(Singleton, object)):$/;" c line:7 language:Python inherits:with_metaclass(Singleton, object) access:public
Most notable README.md /^## Most notable$/;" s line:30 language:Markdown chapter:dotfiles
Mouse Reporting config/iterm.json /^ "Mouse Reporting" : true,$/;" b line:67 language:JSON
Multi1 dotbot/lib/pyyaml/tests/lib/test_multi_constructor.py /^class Multi1(yaml.FullLoader):$/;" c line:26 language:Python inherits:yaml.FullLoader access:public
Multi1 dotbot/lib/pyyaml/tests/lib3/test_multi_constructor.py /^class Multi1(yaml.FullLoader):$/;" c line:26 language:Python inherits:yaml.FullLoader access:public
Multi2 dotbot/lib/pyyaml/tests/lib/test_multi_constructor.py /^class Multi2(yaml.FullLoader):$/;" c line:28 language:Python inherits:yaml.FullLoader access:public
Multi2 dotbot/lib/pyyaml/tests/lib3/test_multi_constructor.py /^class Multi2(yaml.FullLoader):$/;" c line:28 language:Python inherits:yaml.FullLoader access:public
MyCanonicalLoader dotbot/lib/pyyaml/tests/lib/test_structure.py /^ class MyCanonicalLoader(yaml.CanonicalLoader):$/;" c line:153 language:Python function:_make_canonical_loader file: inherits:yaml.CanonicalLoader access:private
MyCanonicalLoader dotbot/lib/pyyaml/tests/lib3/test_structure.py /^ class MyCanonicalLoader(yaml.CanonicalLoader):$/;" c line:153 language:Python function:_make_canonical_loader file: inherits:yaml.CanonicalLoader access:private
MyDict dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class MyDict(dict):$/;" c line:220 language:Python function:_make_objects file: inherits:dict access:private
MyDict dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class MyDict(dict):$/;" c line:207 language:Python function:_make_objects file: inherits:dict access:private
MyDumper dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class MyDumper(yaml.Dumper):$/;" c line:24 language:Python function:_make_objects file: inherits:yaml.Dumper access:private
MyDumper dotbot/lib/pyyaml/tests/lib/test_resolver.py /^ class MyDumper(yaml.Dumper):$/;" c line:29 language:Python function:_make_path_loader_and_dumper file: inherits:yaml.Dumper access:private
MyDumper dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class MyDumper(yaml.Dumper):$/;" c line:21 language:Python function:_make_objects file: inherits:yaml.Dumper access:private
MyDumper dotbot/lib/pyyaml/tests/lib3/test_resolver.py /^ class MyDumper(yaml.Dumper):$/;" c line:29 language:Python function:_make_path_loader_and_dumper file: inherits:yaml.Dumper access:private
MyInt dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class MyInt(int):$/;" c line:210 language:Python function:_make_objects file: inherits:int access:private
MyInt dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class MyInt(int):$/;" c line:197 language:Python function:_make_objects file: inherits:int access:private
MyList dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class MyList(list):$/;" c line:214 language:Python function:_make_objects file: inherits:list access:private
MyList dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class MyList(list):$/;" c line:201 language:Python function:_make_objects file: inherits:list access:private
MyLoader dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class MyLoader(yaml.Loader):$/;" c line:22 language:Python function:_make_objects file: inherits:yaml.Loader access:private
MyLoader dotbot/lib/pyyaml/tests/lib/test_resolver.py /^ class MyLoader(yaml.Loader):$/;" c line:27 language:Python function:_make_path_loader_and_dumper file: inherits:yaml.Loader access:private
MyLoader dotbot/lib/pyyaml/tests/lib/test_structure.py /^ class MyLoader(yaml.Loader):$/;" c line:137 language:Python function:_make_loader file: inherits:yaml.Loader access:private
MyLoader dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class MyLoader(yaml.Loader):$/;" c line:19 language:Python function:_make_objects file: inherits:yaml.Loader access:private
MyLoader dotbot/lib/pyyaml/tests/lib3/test_resolver.py /^ class MyLoader(yaml.Loader):$/;" c line:27 language:Python function:_make_path_loader_and_dumper file: inherits:yaml.Loader access:private
MyLoader dotbot/lib/pyyaml/tests/lib3/test_structure.py /^ class MyLoader(yaml.Loader):$/;" c line:137 language:Python function:_make_loader file: inherits:yaml.Loader access:private
MyTestClass1 dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class MyTestClass1:$/;" c line:27 language:Python function:_make_objects file: inherits: access:private
MyTestClass1 dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class MyTestClass1:$/;" c line:24 language:Python function:_make_objects file: inherits: access:private
MyTestClass2 dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class MyTestClass2(MyTestClass1, yaml.YAMLObject):$/;" c line:58 language:Python function:_make_objects file: inherits:MyTestClass1, yaml.YAMLObject access:private
MyTestClass2 dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class MyTestClass2(MyTestClass1, yaml.YAMLObject):$/;" c line:55 language:Python function:_make_objects file: inherits:MyTestClass1, yaml.YAMLObject access:private
MyTestClass3 dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class MyTestClass3(MyTestClass2):$/;" c line:70 language:Python function:_make_objects file: inherits:MyTestClass2 access:private
MyTestClass3 dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class MyTestClass3(MyTestClass2):$/;" c line:67 language:Python function:_make_objects file: inherits:MyTestClass2 access:private
N config/nvim/editor.vim /^nnoremap N Nzzzv " -----------\/\/------------$/;" m line:18 language:Vim
N config/nvim/plugins.vim /^ map N <Plug>(incsearch-nohl-N)$/;" m line:237 language:Vim
NAME dotbot/lib/pyyaml/setup.py /^NAME = 'PyYAML'$/;" v line:2 language:Python access:public
NONE dotbot/dotbot/messenger/color.py /^ NONE = ""$/;" v line:2 language:Python class:Color access:public
NON_PRINTABLE dotbot/lib/pyyaml/lib/yaml/reader.py /^ NON_PRINTABLE = re.compile(u'[^\\x09\\x0A\\x0D\\x20-\\x7E\\x85\\xA0-\\uD7FF\\uE000-\\uFF/;" v line:140 language:Python class:Reader access:public
NON_PRINTABLE dotbot/lib/pyyaml/lib3/yaml/reader.py /^ NON_PRINTABLE = re.compile('[^\\x09\\x0A\\x0D\\x20-\\x7E\\x85\\xA0-\\uD7FF\\uE000-\\uFFFD\\U/;" v line:137 language:Python class:Reader access:public
NOTIFY_ICON config/polybar/scripts/updates.sh /^NOTIFY_ICON=\/usr\/share\/icons\/Papirus\/32x32\/apps\/system-software-update.svg$/;" v line:3 language:Sh
NOTSET dotbot/dotbot/messenger/level.py /^ NOTSET = 0$/;" v line:2 language:Python class:Level access:public
Name config/iterm.json /^ "Name" : "kornicameister",$/;" s line:290 language:JSON
NewArgs dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class NewArgs(AnObject):$/;" c line:175 language:Python function:_make_objects file: inherits:AnObject access:private
NewArgs dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class NewArgs(AnObject):$/;" c line:158 language:Python function:_make_objects file: inherits:AnObject access:private
NewArgsWithState dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class NewArgsWithState(AnObject):$/;" c line:181 language:Python function:_make_objects file: inherits:AnObject access:private
NewArgsWithState dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class NewArgsWithState(AnObject):$/;" c line:164 language:Python function:_make_objects file: inherits:AnObject access:private
Node dotbot/lib/pyyaml/lib/yaml/nodes.py /^class Node(object):$/;" c line:2 language:Python inherits:object access:public
Node dotbot/lib/pyyaml/lib3/yaml/nodes.py /^class Node(object):$/;" c line:2 language:Python inherits:object access:public
NodeEvent dotbot/lib/pyyaml/lib/yaml/events.py /^class NodeEvent(Event):$/;" c line:15 language:Python inherits:Event access:public
NodeEvent dotbot/lib/pyyaml/lib3/yaml/events.py /^class NodeEvent(Event):$/;" c line:15 language:Python inherits:Event access:public
Non Ascii Font config/iterm.json /^ "Non Ascii Font" : "Monaco 12",$/;" s line:84 language:JSON
Non-ASCII Anti Aliased config/iterm.json /^ "Non-ASCII Anti Aliased" : true,$/;" b line:34 language:JSON
Normal Font config/iterm.json /^ "Normal Font" : "HackNerdFontComplete-Regular 10",$/;" s line:15 language:JSON
ORIGIN dotbot/lib/pyyaml/examples/pygments-lexer/example.yaml /^ center: &ORIGIN {x: 73, y: 129}$/;" a line:216 language:Yaml
OnCalendar config/systemd/user/docker-prune.timer /^OnCalendar=daily$/;" k line:6 language:Iniconf section:Timer
OnCalendar config/systemd/user/eos-update-notifier.timer /^OnCalendar=daily$/;" k line:6 language:Iniconf section:Timer
OnStartupSec config/systemd/user/docker-prune.timer /^OnStartupSec=1min$/;" k line:5 language:Iniconf section:Timer
OnStartupSec config/systemd/user/eos-update-notifier.timer /^OnStartupSec=30sec$/;" k line:5 language:Iniconf section:Timer
Only The Default BG Color Uses Transparency config/iterm.json /^ "Only The Default BG Color Uses Transparency" : true,$/;" b line:74 language:JSON
Option Key Sends config/iterm.json /^ "Option Key Sends" : 0,$/;" n line:87 language:JSON
PARAMETERS dotbot/lib/pyyaml/Makefile /^PARAMETERS=$/;" m line:6 language:Make
PATH dotbot/test/tests/find-python-executable.bash /^PATH="$HOME\/tmp_bin" run_dotbot <<EOF$/;" v line:22 language:Sh
PATH dotbot/test/tests/find-python-executable.bash /^PATH="$HOME\/tmp_bin" run_dotbot <<EOF$/;" v line:37 language:Sh
PATH dotbot/test/tests/find-python-executable.bash /^PATH="$HOME\/tmp_bin" run_dotbot <<EOF$/;" v line:47 language:Sh
PATH dotbot/test/tests/find-python-executable.bash /^PATH="$HOME\/tmp_bin" run_dotbot <<EOF$/;" v line:57 language:Sh
PLATFORMS dotbot/lib/pyyaml/setup.py /^PLATFORMS = "Any"$/;" v line:20 language:Python access:public
POSITIONAL dotbot/test/test /^POSITIONAL=()$/;" v line:14 language:Sh
PYTHON dotbot/lib/pyyaml/Makefile /^PYTHON=\/usr\/bin\/python$/;" m line:4 language:Make
Parser dotbot/lib/pyyaml/lib/yaml/parser.py /^class Parser(object):$/;" c line:72 language:Python inherits:object access:public
Parser dotbot/lib/pyyaml/lib3/yaml/parser.py /^class Parser:$/;" c line:72 language:Python inherits: access:public
ParserError dotbot/lib/pyyaml/ext/_yaml.pyx /^ParserError = yaml.parser.ParserError$/;" v line:21 language:Python access:public
ParserError dotbot/lib/pyyaml/lib/yaml/parser.py /^class ParserError(MarkedYAMLError):$/;" c line:69 language:Python inherits:MarkedYAMLError access:public
ParserError dotbot/lib/pyyaml/lib3/yaml/parser.py /^class ParserError(MarkedYAMLError):$/;" c line:69 language:Python inherits:MarkedYAMLError access:public
Patches dotbot/CONTRIBUTING.md /^Patches$/;" s line:34 language:Markdown chapter:Contributing
Persistent config/systemd/user/docker-prune.timer /^Persistent=true$/;" k line:7 language:Iniconf section:Timer
Persistent config/systemd/user/eos-update-notifier.timer /^Persistent=true$/;" k line:7 language:Iniconf section:Timer
Plugin dotbot/dotbot/plugin.py /^class Plugin(object):$/;" c line:5 language:Python inherits:object access:public
Plugins dotbot/README.md /^### Plugins$/;" S line:416 language:Markdown section:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives
Plugins dotbot/README.md /^- [Plugins](#plugins)$/;" l line:10 language:Markdown
Prompt Before Closing 2 config/iterm.json /^ "Prompt Before Closing 2" : false,$/;" b line:63 language:JSON
PyLong_FromUnsignedLongLong dotbot/lib/pyyaml/ext/_yaml.h /^#define PyLong_FromUnsignedLongLong(/;" d line:20 language:C++ signature:(z)
PyString_AS_STRING dotbot/lib/pyyaml/ext/_yaml.h /^#define PyString_AS_STRING /;" d line:11 language:C++
PyString_CheckExact dotbot/lib/pyyaml/ext/_yaml.h /^#define PyString_CheckExact /;" d line:10 language:C++
PyString_FromStringAndSize dotbot/lib/pyyaml/ext/_yaml.h /^#define PyString_FromStringAndSize /;" d line:13 language:C++
PyString_GET_SIZE dotbot/lib/pyyaml/ext/_yaml.h /^#define PyString_GET_SIZE /;" d line:12 language:C++
PyUnicode_FromString dotbot/lib/pyyaml/ext/_yaml.h /^#define PyUnicode_FromString(/;" d line:6 language:C++ signature:(s)
QUOTE_CODES dotbot/lib/pyyaml/tests/lib/canonical.py /^ QUOTE_CODES = {$/;" v line:129 language:Python class:CanonicalScanner access:public
QUOTE_CODES dotbot/lib/pyyaml/tests/lib3/canonical.py /^ QUOTE_CODES = {$/;" v line:131 language:Python class:CanonicalScanner access:public
QUOTE_REPLACES dotbot/lib/pyyaml/tests/lib/canonical.py /^ QUOTE_REPLACES = {$/;" v line:135 language:Python class:CanonicalScanner access:public
QUOTE_REPLACES dotbot/lib/pyyaml/tests/lib3/canonical.py /^ QUOTE_REPLACES = {$/;" v line:137 language:Python class:CanonicalScanner access:public
RED config/polybar/scripts/checkupdates /^ RED="${BOLD}$(tput setaf 1)"$/;" v line:66 language:Sh
RED config/polybar/scripts/checkupdates /^ RED="${BOLD}\\e[1;31m"$/;" v line:73 language:Sh
RED dotbot/dotbot/messenger/color.py /^ RED = "\\033[91m"$/;" v line:4 language:Python class:Color access:public
REGION_SEPARATOR bin/aws-ssh-over-ssm.sh /^REGION_SEPARATOR='--'$/;" v line:9 language:Sh
REPO_VERSION bin/upgrade /^ REPO_VERSION="$(git log -n 1 --format=oneline | awk '{print $1}')"$/;" v line:178 language:Sh
RESET dotbot/dotbot/messenger/color.py /^ RESET = "\\033[0m"$/;" v line:3 language:Python class:Color access:public
Rationale dotbot/README.md /^## Rationale$/;" s line:16 language:Markdown chapter:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)
Rationale dotbot/README.md /^- [Rationale](#rationale)$/;" l line:6 language:Markdown
Reader dotbot/lib/pyyaml/lib/yaml/reader.py /^class Reader(object):$/;" c line:47 language:Python inherits:object access:public
Reader dotbot/lib/pyyaml/lib3/yaml/reader.py /^class Reader(object):$/;" c line:45 language:Python inherits:object access:public
ReaderError dotbot/lib/pyyaml/ext/_yaml.pyx /^ReaderError = yaml.reader.ReaderError$/;" v line:19 language:Python access:public
ReaderError dotbot/lib/pyyaml/lib/yaml/reader.py /^class ReaderError(YAMLError):$/;" c line:26 language:Python inherits:YAMLError access:public
ReaderError dotbot/lib/pyyaml/lib3/yaml/reader.py /^class ReaderError(YAMLError):$/;" c line:24 language:Python inherits:YAMLError access:public
ReadingError dotbot/dotbot/config.py /^class ReadingError(Exception):$/;" c line:28 language:Python inherits:Exception access:public
Red Component config/iterm.json /^ "Red Component" : 0$/;" n line:30 language:JSON object:Ansi 2 Color
Red Component config/iterm.json /^ "Red Component" : 0$/;" n line:308 language:JSON object:Ansi 0 Color
Red Component config/iterm.json /^ "Red Component" : 0$/;" n line:340 language:JSON object:Ansi 6 Color
Red Component config/iterm.json /^ "Red Component" : 0$/;" n line:5 language:JSON object:Ansi 4 Color
Red Component config/iterm.json /^ "Red Component" : 0$/;" n line:91 language:JSON object:Selected Text Color
Red Component config/iterm.json /^ "Red Component" : 0$/;" n line:96 language:JSON object:Background Color
Red Component config/iterm.json /^ "Red Component" : 0.3333333432674408$/;" n line:13 language:JSON object:Ansi 12 Color
Red Component config/iterm.json /^ "Red Component" : 0.3333333432674408$/;" n line:288 language:JSON object:Ansi 14 Color
Red Component config/iterm.json /^ "Red Component" : 0.3333333432674408$/;" n line:329 language:JSON object:Ansi 8 Color
Red Component config/iterm.json /^ "Red Component" : 0.3333333432674408$/;" n line:39 language:JSON object:Ansi 10 Color
Red Component config/iterm.json /^ "Red Component" : 0.70980000495910645$/;" n line:72 language:JSON object:Selection Color
Red Component config/iterm.json /^ "Red Component" : 0.73333334922790527$/;" n line:19 language:JSON object:Ansi 5 Color
Red Component config/iterm.json /^ "Red Component" : 0.73333334922790527$/;" n line:300 language:JSON object:Cursor Color
Red Component config/iterm.json /^ "Red Component" : 0.73333334922790527$/;" n line:313 language:JSON object:Ansi 1 Color
Red Component config/iterm.json /^ "Red Component" : 0.73333334922790527$/;" n line:319 language:JSON object:Ansi 3 Color
Red Component config/iterm.json /^ "Red Component" : 0.73333334922790527$/;" n line:324 language:JSON object:Ansi 7 Color
Red Component config/iterm.json /^ "Red Component" : 0.73333334922790527$/;" n line:57 language:JSON object:Foreground Color
Red Component config/iterm.json /^ "Red Component" : 1$/;" n line:102 language:JSON object:Ansi 11 Color
Red Component config/iterm.json /^ "Red Component" : 1$/;" n line:24 language:JSON object:Bold Color
Red Component config/iterm.json /^ "Red Component" : 1$/;" n line:294 language:JSON object:Cursor Text Color
Red Component config/iterm.json /^ "Red Component" : 1$/;" n line:334 language:JSON object:Ansi 9 Color
Red Component config/iterm.json /^ "Red Component" : 1$/;" n line:52 language:JSON object:Ansi 15 Color
Red Component config/iterm.json /^ "Red Component" : 1$/;" n line:80 language:JSON object:Ansi 13 Color
Reduce dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class Reduce(AnObject):$/;" c line:189 language:Python function:_make_objects file: inherits:AnObject access:private
Reduce dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class Reduce(AnObject):$/;" c line:176 language:Python function:_make_objects file: inherits:AnObject access:private
ReduceWithState dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class ReduceWithState(AnObject):$/;" c line:193 language:Python function:_make_objects file: inherits:AnObject access:private
ReduceWithState dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class ReduceWithState(AnObject):$/;" c line:180 language:Python function:_make_objects file: inherits:AnObject access:private
Representer dotbot/lib/pyyaml/lib/yaml/representer.py /^class Representer(SafeRepresenter):$/;" c line:296 language:Python inherits:SafeRepresenter access:public
Representer dotbot/lib/pyyaml/lib3/yaml/representer.py /^class Representer(SafeRepresenter):$/;" c line:272 language:Python inherits:SafeRepresenter access:public
RepresenterError dotbot/lib/pyyaml/ext/_yaml.pyx /^RepresenterError = yaml.representer.RepresenterError$/;" v line:26 language:Python access:public
RepresenterError dotbot/lib/pyyaml/lib/yaml/representer.py /^class RepresenterError(YAMLError):$/;" c line:13 language:Python inherits:YAMLError access:public
RepresenterError dotbot/lib/pyyaml/lib3/yaml/representer.py /^class RepresenterError(YAMLError):$/;" c line:10 language:Python inherits:YAMLError access:public
Resolver dotbot/lib/pyyaml/lib/yaml/resolver.py /^class Resolver(BaseResolver):$/;" c line:167 language:Python inherits:BaseResolver access:public
Resolver dotbot/lib/pyyaml/lib3/yaml/resolver.py /^class Resolver(BaseResolver):$/;" c line:167 language:Python inherits:BaseResolver access:public
ResolverError dotbot/lib/pyyaml/lib/yaml/resolver.py /^class ResolverError(YAMLError):$/;" c line:9 language:Python inherits:YAMLError access:public
ResolverError dotbot/lib/pyyaml/lib3/yaml/resolver.py /^class ResolverError(YAMLError):$/;" c line:9 language:Python inherits:YAMLError access:public
Right Option Key Sends config/iterm.json /^ "Right Option Key Sends" : 0,$/;" n line:336 language:JSON
Rows config/iterm.json /^ "Rows" : 25,$/;" n line:32 language:JSON
Running the Tests dotbot/test/README.md /^Running the Tests$/;" s line:41 language:Markdown chapter:Testing
SS dotbot/lib/pyyaml/examples/pygments-lexer/example.yaml /^ - &SS Sammy Sosa$/;" a line:91 language:Yaml
SSH Compression README.md /^- [SSH Compression](https:\/\/www.gidblog.com\/enable-compression-for-ssh\/)$/;" l line:56 language:Markdown
SafeConstructor dotbot/lib/pyyaml/lib/yaml/constructor.py /^class SafeConstructor(BaseConstructor):$/;" c line:190 language:Python inherits:BaseConstructor access:public
SafeConstructor dotbot/lib/pyyaml/lib3/yaml/constructor.py /^class SafeConstructor(BaseConstructor):$/;" c line:163 language:Python inherits:BaseConstructor access:public
SafeDumper dotbot/lib/pyyaml/lib/yaml/dumper.py /^class SafeDumper(Emitter, Serializer, SafeRepresenter, Resolver):$/;" c line:27 language:Python inherits:Emitter, Serializer, SafeRepresenter, Resolver access:public
SafeDumper dotbot/lib/pyyaml/lib3/yaml/dumper.py /^class SafeDumper(Emitter, Serializer, SafeRepresenter, Resolver):$/;" c line:27 language:Python inherits:Emitter, Serializer, SafeRepresenter, Resolver access:public
SafeLoader dotbot/lib/pyyaml/lib/yaml/loader.py /^class SafeLoader(Reader, Scanner, Parser, Composer, SafeConstructor, Resolver):$/;" c line:31 language:Python inherits:Reader, Scanner, Parser, Composer, SafeConstructor, Resolver access:public
SafeLoader dotbot/lib/pyyaml/lib3/yaml/loader.py /^class SafeLoader(Reader, Scanner, Parser, Composer, SafeConstructor, Resolver):$/;" c line:31 language:Python inherits:Reader, Scanner, Parser, Composer, SafeConstructor, Resolver access:public
SafeRepresenter dotbot/lib/pyyaml/lib/yaml/representer.py /^class SafeRepresenter(BaseRepresenter):$/;" c line:142 language:Python inherits:BaseRepresenter access:public
SafeRepresenter dotbot/lib/pyyaml/lib3/yaml/representer.py /^class SafeRepresenter(BaseRepresenter):$/;" c line:134 language:Python inherits:BaseRepresenter access:public
Sammy Sosa dotbot/lib/pyyaml/examples/pygments-lexer/example.yaml /^ name: Sammy Sosa$/;" p line:37 language:AnsiblePlaybook
ScalarAnalysis dotbot/lib/pyyaml/lib/yaml/emitter.py /^class ScalarAnalysis(object):$/;" c line:21 language:Python inherits:object access:public
ScalarAnalysis dotbot/lib/pyyaml/lib3/yaml/emitter.py /^class ScalarAnalysis:$/;" c line:17 language:Python inherits: access:public
ScalarEvent dotbot/lib/pyyaml/ext/_yaml.pyx /^ScalarEvent = yaml.events.ScalarEvent$/;" v line:54 language:Python access:public
ScalarEvent dotbot/lib/pyyaml/lib/yaml/events.py /^class ScalarEvent(NodeEvent):$/;" c line:64 language:Python inherits:NodeEvent access:public
ScalarEvent dotbot/lib/pyyaml/lib3/yaml/events.py /^class ScalarEvent(NodeEvent):$/;" c line:64 language:Python inherits:NodeEvent access:public
ScalarNode dotbot/lib/pyyaml/ext/_yaml.pyx /^ScalarNode = yaml.nodes.ScalarNode$/;" v line:60 language:Python access:public
ScalarNode dotbot/lib/pyyaml/lib/yaml/nodes.py /^class ScalarNode(Node):$/;" c line:25 language:Python inherits:Node access:public
ScalarNode dotbot/lib/pyyaml/lib3/yaml/nodes.py /^class ScalarNode(Node):$/;" c line:25 language:Python inherits:Node access:public
ScalarToken dotbot/lib/pyyaml/ext/_yaml.pyx /^ScalarToken = yaml.tokens.ScalarToken$/;" v line:47 language:Python access:public
ScalarToken dotbot/lib/pyyaml/lib/yaml/tokens.py /^class ScalarToken(Token):$/;" c line:96 language:Python inherits:Token access:public
ScalarToken dotbot/lib/pyyaml/lib3/yaml/tokens.py /^class ScalarToken(Token):$/;" c line:96 language:Python inherits:Token access:public
Scanner dotbot/lib/pyyaml/lib/yaml/scanner.py /^class Scanner(object):$/;" c line:46 language:Python inherits:object access:public
Scanner dotbot/lib/pyyaml/lib3/yaml/scanner.py /^class Scanner:$/;" c line:46 language:Python inherits: access:public
ScannerError dotbot/lib/pyyaml/ext/_yaml.pyx /^ScannerError = yaml.scanner.ScannerError$/;" v line:20 language:Python access:public
ScannerError dotbot/lib/pyyaml/lib/yaml/scanner.py /^class ScannerError(MarkedYAMLError):$/;" c line:32 language:Python inherits:MarkedYAMLError access:public
ScannerError dotbot/lib/pyyaml/lib3/yaml/scanner.py /^class ScannerError(MarkedYAMLError):$/;" c line:32 language:Python inherits:MarkedYAMLError access:public
Screen config/iterm.json /^ "Screen" : -1,$/;" n line:68 language:JSON
Scrollback Lines config/iterm.json /^ "Scrollback Lines" : 1000,$/;" n line:278 language:JSON
Selected Text Color config/iterm.json /^ "Selected Text Color" : {$/;" o line:88 language:JSON
Selection Color config/iterm.json /^ "Selection Color" : {$/;" o line:69 language:JSON
Send Code When Idle config/iterm.json /^ "Send Code When Idle" : false,$/;" b line:279 language:JSON
SequenceEndEvent dotbot/lib/pyyaml/ext/_yaml.pyx /^SequenceEndEvent = yaml.events.SequenceEndEvent$/;" v line:56 language:Python access:public
SequenceEndEvent dotbot/lib/pyyaml/lib/yaml/events.py /^class SequenceEndEvent(CollectionEndEvent):$/;" c line:78 language:Python inherits:CollectionEndEvent access:public
SequenceEndEvent dotbot/lib/pyyaml/lib3/yaml/events.py /^class SequenceEndEvent(CollectionEndEvent):$/;" c line:78 language:Python inherits:CollectionEndEvent access:public
SequenceNode dotbot/lib/pyyaml/ext/_yaml.pyx /^SequenceNode = yaml.nodes.SequenceNode$/;" v line:61 language:Python access:public
SequenceNode dotbot/lib/pyyaml/lib/yaml/nodes.py /^class SequenceNode(CollectionNode):$/;" c line:44 language:Python inherits:CollectionNode access:public
SequenceNode dotbot/lib/pyyaml/lib3/yaml/nodes.py /^class SequenceNode(CollectionNode):$/;" c line:44 language:Python inherits:CollectionNode access:public
SequenceStartEvent dotbot/lib/pyyaml/ext/_yaml.pyx /^SequenceStartEvent = yaml.events.SequenceStartEvent$/;" v line:55 language:Python access:public
SequenceStartEvent dotbot/lib/pyyaml/lib/yaml/events.py /^class SequenceStartEvent(CollectionStartEvent):$/;" c line:75 language:Python inherits:CollectionStartEvent access:public
SequenceStartEvent dotbot/lib/pyyaml/lib3/yaml/events.py /^class SequenceStartEvent(CollectionStartEvent):$/;" c line:75 language:Python inherits:CollectionStartEvent access:public
Serializer dotbot/lib/pyyaml/lib/yaml/serializer.py /^class Serializer(object):$/;" c line:11 language:Python inherits:object access:public
Serializer dotbot/lib/pyyaml/lib3/yaml/serializer.py /^class Serializer:$/;" c line:11 language:Python inherits: access:public
SerializerError dotbot/lib/pyyaml/ext/_yaml.pyx /^SerializerError = yaml.serializer.SerializerError$/;" v line:25 language:Python access:public
SerializerError dotbot/lib/pyyaml/lib/yaml/serializer.py /^class SerializerError(YAMLError):$/;" c line:8 language:Python inherits:YAMLError access:public
SerializerError dotbot/lib/pyyaml/lib3/yaml/serializer.py /^class SerializerError(YAMLError):$/;" c line:8 language:Python inherits:YAMLError access:public
Service config/systemd/user/docker-prune.service /^[Service]$/;" s line:4 language:Iniconf
Service config/systemd/user/eos-update-notifier.service /^[Service]$/;" s line:4 language:Iniconf
Shell dotbot/README.md /^### Shell$/;" S line:311 language:Markdown section:Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI)""Directives
Shell dotbot/dotbot/plugins/shell.py /^class Shell(dotbot.Plugin):$/;" c line:7 language:Python inherits:dotbot.Plugin access:public
Shortcut config/iterm.json /^ "Shortcut" : "",$/;" s line:296 language:JSON
Silence Bell config/iterm.json /^ "Silence Bell" : false,$/;" b line:284 language:JSON
SimpleKey dotbot/lib/pyyaml/lib/yaml/scanner.py /^class SimpleKey(object):$/;" c line:35 language:Python inherits:object access:public
SimpleKey dotbot/lib/pyyaml/lib3/yaml/scanner.py /^class SimpleKey:$/;" c line:35 language:Python inherits: access:public
Singleton dotbot/dotbot/util/singleton.py /^class Singleton(type):$/;" c line:1 language:Python inherits:type access:public
Slots dotbot/lib/pyyaml/tests/lib/test_constructor.py /^ class Slots(object):$/;" c line:199 language:Python function:_make_objects file: inherits:object access:private
Slots dotbot/lib/pyyaml/tests/lib3/test_constructor.py /^ class Slots:$/;" c line:186 language:Python function:_make_objects file: inherits: access:private