-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdocs.yml
More file actions
3498 lines (3483 loc) · 261 KB
/
mkdocs.yml
File metadata and controls
3498 lines (3483 loc) · 261 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
site_name: Midnight Commander
site_url: https://midnight-commander.org
site_description: Midnight Commander Development Center
repo_name: MidnightCommander/mc
repo_url: https://github.com/MidnightCommander/mc
extra:
downloads_url: https://ftp.osuosl.org/pub/midnightcommander/?C=N;O=D
man_url: https://source.midnight-commander.org/man
mirror_url: https://repo.or.cz/midnight-commander.git
organization_url: https://github.com/MidnightCommander
source_url: https://source.midnight-commander.org
clang_format_version: 20.1.3
social:
- icon: fontawesome/brands/github
link: https://github.com/MidnightCommander
- icon: fontawesome/solid/download
link: https://ftp.osuosl.org/pub/midnightcommander
- icon: fontawesome/solid/book
link: https://source.midnight-commander.org
copyright: Copyright © 2025 <a href="https://www.linkedin.com/in/yuryzaytsev/">Yury V. Zaytsev</a>
site_author: Yury V. Zaytsev
extra_css:
- stylesheets/extra.css
theme:
language: en
name: material
custom_dir: overrides
logo: img/mc-logo.png
favicon: img/mc-logo.png
palette:
primary: custom
accent: custom
font:
text: Fira Mono
code: Fira Code
features:
- content.code.copy
- navigation.sections
nav:
- Home: index.md
- Maintainers: maintainers.md
- Communication: communication.md
- Other resources: other.md
- Development:
- Source code: source-code.md
- Coding style: coding-style.md
- Translations: translations.md
- Release process: release-process.md
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- pymdownx.emoji:
emoji_generator: !!python/name:material.extensions.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
- pymdownx.highlight
- pymdownx.keys
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
clickable_checkbox: true
plugins:
- git-revision-date-localized:
enable_creation_date: true
strict: true
- macros:
on_undefined: strict
- search
- redirects:
redirect_maps:
'browser.md': https://github.com/MidnightCommander/mc/tree/master
'diff.md': https://github.com/MidnightCommander/mc/commits/master
'downloads.md': https://ftp.osuosl.org/pub/midnightcommander
'log.md': https://github.com/MidnightCommander/mc/commits/master
'milestone.md': https://github.com/MidnightCommander/mc/milestones
'report.md': https://github.com/MidnightCommander/mc/issues
'roadmap.md': https://github.com/MidnightCommander/mc/milestones
'timeline.md': https://github.com/MidnightCommander/mc/commits/master
'wiki.md': 'index.md'
'ticket/1.md': https://github.com/MidnightCommander/mc/issues/1
'ticket/2.md': https://github.com/MidnightCommander/mc/issues/2
'ticket/3.md': https://github.com/MidnightCommander/mc/issues/3
'ticket/4.md': https://github.com/MidnightCommander/mc/issues/4
'ticket/5.md': https://github.com/MidnightCommander/mc/issues/5
'ticket/6.md': https://github.com/MidnightCommander/mc/issues/6
'ticket/7.md': https://github.com/MidnightCommander/mc/issues/7
'ticket/8.md': https://github.com/MidnightCommander/mc/issues/8
'ticket/9.md': https://github.com/MidnightCommander/mc/issues/9
'ticket/10.md': https://github.com/MidnightCommander/mc/issues/10
'ticket/11.md': https://github.com/MidnightCommander/mc/issues/11
'ticket/12.md': https://github.com/MidnightCommander/mc/issues/12
'ticket/13.md': https://github.com/MidnightCommander/mc/issues/13
'ticket/14.md': https://github.com/MidnightCommander/mc/issues/14
'ticket/15.md': https://github.com/MidnightCommander/mc/issues/15
'ticket/16.md': https://github.com/MidnightCommander/mc/issues/16
'ticket/17.md': https://github.com/MidnightCommander/mc/issues/17
'ticket/18.md': https://github.com/MidnightCommander/mc/issues/18
'ticket/19.md': https://github.com/MidnightCommander/mc/issues/19
'ticket/20.md': https://github.com/MidnightCommander/mc/issues/20
'ticket/21.md': https://github.com/MidnightCommander/mc/issues/21
'ticket/22.md': https://github.com/MidnightCommander/mc/issues/22
'ticket/23.md': https://github.com/MidnightCommander/mc/issues/23
'ticket/24.md': https://github.com/MidnightCommander/mc/issues/24
'ticket/25.md': https://github.com/MidnightCommander/mc/issues/25
'ticket/26.md': https://github.com/MidnightCommander/mc/issues/26
'ticket/27.md': https://github.com/MidnightCommander/mc/issues/27
'ticket/28.md': https://github.com/MidnightCommander/mc/issues/28
'ticket/29.md': https://github.com/MidnightCommander/mc/issues/29
'ticket/30.md': https://github.com/MidnightCommander/mc/issues/30
'ticket/31.md': https://github.com/MidnightCommander/mc/issues/31
'ticket/32.md': https://github.com/MidnightCommander/mc/issues/32
'ticket/33.md': https://github.com/MidnightCommander/mc/issues/33
'ticket/34.md': https://github.com/MidnightCommander/mc/issues/34
'ticket/35.md': https://github.com/MidnightCommander/mc/issues/35
'ticket/36.md': https://github.com/MidnightCommander/mc/issues/36
'ticket/37.md': https://github.com/MidnightCommander/mc/issues/37
'ticket/38.md': https://github.com/MidnightCommander/mc/issues/38
'ticket/39.md': https://github.com/MidnightCommander/mc/issues/39
'ticket/40.md': https://github.com/MidnightCommander/mc/issues/40
'ticket/41.md': https://github.com/MidnightCommander/mc/issues/41
'ticket/42.md': https://github.com/MidnightCommander/mc/issues/42
'ticket/43.md': https://github.com/MidnightCommander/mc/issues/43
'ticket/44.md': https://github.com/MidnightCommander/mc/issues/44
'ticket/45.md': https://github.com/MidnightCommander/mc/issues/45
'ticket/46.md': https://github.com/MidnightCommander/mc/issues/46
'ticket/47.md': https://github.com/MidnightCommander/mc/issues/47
'ticket/48.md': https://github.com/MidnightCommander/mc/issues/48
'ticket/49.md': https://github.com/MidnightCommander/mc/issues/49
'ticket/50.md': https://github.com/MidnightCommander/mc/issues/50
'ticket/51.md': https://github.com/MidnightCommander/mc/issues/51
'ticket/52.md': https://github.com/MidnightCommander/mc/issues/52
'ticket/53.md': https://github.com/MidnightCommander/mc/issues/53
'ticket/54.md': https://github.com/MidnightCommander/mc/issues/54
'ticket/55.md': https://github.com/MidnightCommander/mc/issues/55
'ticket/56.md': https://github.com/MidnightCommander/mc/issues/56
'ticket/57.md': https://github.com/MidnightCommander/mc/issues/57
'ticket/58.md': https://github.com/MidnightCommander/mc/issues/58
'ticket/59.md': https://github.com/MidnightCommander/mc/issues/59
'ticket/60.md': https://github.com/MidnightCommander/mc/issues/60
'ticket/61.md': https://github.com/MidnightCommander/mc/issues/61
'ticket/62.md': https://github.com/MidnightCommander/mc/issues/62
'ticket/63.md': https://github.com/MidnightCommander/mc/issues/63
'ticket/64.md': https://github.com/MidnightCommander/mc/issues/64
'ticket/65.md': https://github.com/MidnightCommander/mc/issues/65
'ticket/66.md': https://github.com/MidnightCommander/mc/issues/66
'ticket/67.md': https://github.com/MidnightCommander/mc/issues/67
'ticket/68.md': https://github.com/MidnightCommander/mc/issues/68
'ticket/69.md': https://github.com/MidnightCommander/mc/issues/69
'ticket/70.md': https://github.com/MidnightCommander/mc/issues/70
'ticket/71.md': https://github.com/MidnightCommander/mc/issues/71
'ticket/72.md': https://github.com/MidnightCommander/mc/issues/72
'ticket/73.md': https://github.com/MidnightCommander/mc/issues/73
'ticket/74.md': https://github.com/MidnightCommander/mc/issues/74
'ticket/75.md': https://github.com/MidnightCommander/mc/issues/75
'ticket/76.md': https://github.com/MidnightCommander/mc/issues/76
'ticket/77.md': https://github.com/MidnightCommander/mc/issues/77
'ticket/78.md': https://github.com/MidnightCommander/mc/issues/78
'ticket/79.md': https://github.com/MidnightCommander/mc/issues/79
'ticket/80.md': https://github.com/MidnightCommander/mc/issues/80
'ticket/81.md': https://github.com/MidnightCommander/mc/issues/81
'ticket/82.md': https://github.com/MidnightCommander/mc/issues/82
'ticket/83.md': https://github.com/MidnightCommander/mc/issues/83
'ticket/84.md': https://github.com/MidnightCommander/mc/issues/84
'ticket/85.md': https://github.com/MidnightCommander/mc/issues/85
'ticket/86.md': https://github.com/MidnightCommander/mc/issues/86
'ticket/87.md': https://github.com/MidnightCommander/mc/issues/87
'ticket/88.md': https://github.com/MidnightCommander/mc/issues/88
'ticket/89.md': https://github.com/MidnightCommander/mc/issues/89
'ticket/90.md': https://github.com/MidnightCommander/mc/issues/90
'ticket/91.md': https://github.com/MidnightCommander/mc/issues/91
'ticket/92.md': https://github.com/MidnightCommander/mc/issues/92
'ticket/93.md': https://github.com/MidnightCommander/mc/issues/93
'ticket/94.md': https://github.com/MidnightCommander/mc/issues/94
'ticket/95.md': https://github.com/MidnightCommander/mc/issues/95
'ticket/96.md': https://github.com/MidnightCommander/mc/issues/96
'ticket/97.md': https://github.com/MidnightCommander/mc/issues/97
'ticket/99.md': https://github.com/MidnightCommander/mc/issues/99
'ticket/112.md': https://github.com/MidnightCommander/mc/issues/112
'ticket/113.md': https://github.com/MidnightCommander/mc/issues/113
'ticket/114.md': https://github.com/MidnightCommander/mc/issues/114
'ticket/115.md': https://github.com/MidnightCommander/mc/issues/115
'ticket/116.md': https://github.com/MidnightCommander/mc/issues/116
'ticket/117.md': https://github.com/MidnightCommander/mc/issues/117
'ticket/118.md': https://github.com/MidnightCommander/mc/issues/118
'ticket/119.md': https://github.com/MidnightCommander/mc/issues/119
'ticket/120.md': https://github.com/MidnightCommander/mc/issues/120
'ticket/121.md': https://github.com/MidnightCommander/mc/issues/121
'ticket/122.md': https://github.com/MidnightCommander/mc/issues/122
'ticket/123.md': https://github.com/MidnightCommander/mc/issues/123
'ticket/125.md': https://github.com/MidnightCommander/mc/issues/125
'ticket/126.md': https://github.com/MidnightCommander/mc/issues/126
'ticket/127.md': https://github.com/MidnightCommander/mc/issues/127
'ticket/128.md': https://github.com/MidnightCommander/mc/issues/128
'ticket/129.md': https://github.com/MidnightCommander/mc/issues/129
'ticket/130.md': https://github.com/MidnightCommander/mc/issues/130
'ticket/132.md': https://github.com/MidnightCommander/mc/issues/132
'ticket/133.md': https://github.com/MidnightCommander/mc/issues/133
'ticket/134.md': https://github.com/MidnightCommander/mc/issues/134
'ticket/135.md': https://github.com/MidnightCommander/mc/issues/135
'ticket/137.md': https://github.com/MidnightCommander/mc/issues/137
'ticket/138.md': https://github.com/MidnightCommander/mc/issues/138
'ticket/139.md': https://github.com/MidnightCommander/mc/issues/139
'ticket/140.md': https://github.com/MidnightCommander/mc/issues/140
'ticket/142.md': https://github.com/MidnightCommander/mc/issues/142
'ticket/143.md': https://github.com/MidnightCommander/mc/issues/143
'ticket/144.md': https://github.com/MidnightCommander/mc/issues/144
'ticket/145.md': https://github.com/MidnightCommander/mc/issues/145
'ticket/146.md': https://github.com/MidnightCommander/mc/issues/146
'ticket/147.md': https://github.com/MidnightCommander/mc/issues/147
'ticket/148.md': https://github.com/MidnightCommander/mc/issues/148
'ticket/149.md': https://github.com/MidnightCommander/mc/issues/149
'ticket/150.md': https://github.com/MidnightCommander/mc/issues/150
'ticket/151.md': https://github.com/MidnightCommander/mc/issues/151
'ticket/152.md': https://github.com/MidnightCommander/mc/issues/152
'ticket/153.md': https://github.com/MidnightCommander/mc/issues/153
'ticket/154.md': https://github.com/MidnightCommander/mc/issues/154
'ticket/155.md': https://github.com/MidnightCommander/mc/issues/155
'ticket/156.md': https://github.com/MidnightCommander/mc/issues/156
'ticket/157.md': https://github.com/MidnightCommander/mc/issues/157
'ticket/158.md': https://github.com/MidnightCommander/mc/issues/158
'ticket/159.md': https://github.com/MidnightCommander/mc/issues/159
'ticket/160.md': https://github.com/MidnightCommander/mc/issues/160
'ticket/161.md': https://github.com/MidnightCommander/mc/issues/161
'ticket/162.md': https://github.com/MidnightCommander/mc/issues/162
'ticket/163.md': https://github.com/MidnightCommander/mc/issues/163
'ticket/164.md': https://github.com/MidnightCommander/mc/issues/164
'ticket/165.md': https://github.com/MidnightCommander/mc/issues/165
'ticket/166.md': https://github.com/MidnightCommander/mc/issues/166
'ticket/167.md': https://github.com/MidnightCommander/mc/issues/167
'ticket/168.md': https://github.com/MidnightCommander/mc/issues/168
'ticket/169.md': https://github.com/MidnightCommander/mc/issues/169
'ticket/170.md': https://github.com/MidnightCommander/mc/issues/170
'ticket/171.md': https://github.com/MidnightCommander/mc/issues/171
'ticket/172.md': https://github.com/MidnightCommander/mc/issues/172
'ticket/173.md': https://github.com/MidnightCommander/mc/issues/173
'ticket/174.md': https://github.com/MidnightCommander/mc/issues/174
'ticket/175.md': https://github.com/MidnightCommander/mc/issues/175
'ticket/176.md': https://github.com/MidnightCommander/mc/issues/176
'ticket/177.md': https://github.com/MidnightCommander/mc/issues/177
'ticket/178.md': https://github.com/MidnightCommander/mc/issues/178
'ticket/179.md': https://github.com/MidnightCommander/mc/issues/179
'ticket/180.md': https://github.com/MidnightCommander/mc/issues/180
'ticket/181.md': https://github.com/MidnightCommander/mc/issues/181
'ticket/182.md': https://github.com/MidnightCommander/mc/issues/182
'ticket/183.md': https://github.com/MidnightCommander/mc/issues/183
'ticket/184.md': https://github.com/MidnightCommander/mc/issues/184
'ticket/185.md': https://github.com/MidnightCommander/mc/issues/185
'ticket/186.md': https://github.com/MidnightCommander/mc/issues/186
'ticket/187.md': https://github.com/MidnightCommander/mc/issues/187
'ticket/188.md': https://github.com/MidnightCommander/mc/issues/188
'ticket/189.md': https://github.com/MidnightCommander/mc/issues/189
'ticket/190.md': https://github.com/MidnightCommander/mc/issues/190
'ticket/191.md': https://github.com/MidnightCommander/mc/issues/191
'ticket/192.md': https://github.com/MidnightCommander/mc/issues/192
'ticket/193.md': https://github.com/MidnightCommander/mc/issues/193
'ticket/194.md': https://github.com/MidnightCommander/mc/issues/194
'ticket/195.md': https://github.com/MidnightCommander/mc/issues/195
'ticket/196.md': https://github.com/MidnightCommander/mc/issues/196
'ticket/197.md': https://github.com/MidnightCommander/mc/issues/197
'ticket/199.md': https://github.com/MidnightCommander/mc/issues/199
'ticket/200.md': https://github.com/MidnightCommander/mc/issues/200
'ticket/201.md': https://github.com/MidnightCommander/mc/issues/201
'ticket/202.md': https://github.com/MidnightCommander/mc/issues/202
'ticket/203.md': https://github.com/MidnightCommander/mc/issues/203
'ticket/204.md': https://github.com/MidnightCommander/mc/issues/204
'ticket/205.md': https://github.com/MidnightCommander/mc/issues/205
'ticket/206.md': https://github.com/MidnightCommander/mc/issues/206
'ticket/207.md': https://github.com/MidnightCommander/mc/issues/207
'ticket/208.md': https://github.com/MidnightCommander/mc/issues/208
'ticket/209.md': https://github.com/MidnightCommander/mc/issues/209
'ticket/210.md': https://github.com/MidnightCommander/mc/issues/210
'ticket/211.md': https://github.com/MidnightCommander/mc/issues/211
'ticket/212.md': https://github.com/MidnightCommander/mc/issues/212
'ticket/213.md': https://github.com/MidnightCommander/mc/issues/213
'ticket/214.md': https://github.com/MidnightCommander/mc/issues/214
'ticket/215.md': https://github.com/MidnightCommander/mc/issues/215
'ticket/216.md': https://github.com/MidnightCommander/mc/issues/216
'ticket/218.md': https://github.com/MidnightCommander/mc/issues/218
'ticket/219.md': https://github.com/MidnightCommander/mc/issues/219
'ticket/220.md': https://github.com/MidnightCommander/mc/issues/220
'ticket/221.md': https://github.com/MidnightCommander/mc/issues/221
'ticket/222.md': https://github.com/MidnightCommander/mc/issues/222
'ticket/223.md': https://github.com/MidnightCommander/mc/issues/223
'ticket/224.md': https://github.com/MidnightCommander/mc/issues/224
'ticket/225.md': https://github.com/MidnightCommander/mc/issues/225
'ticket/226.md': https://github.com/MidnightCommander/mc/issues/226
'ticket/227.md': https://github.com/MidnightCommander/mc/issues/227
'ticket/228.md': https://github.com/MidnightCommander/mc/issues/228
'ticket/229.md': https://github.com/MidnightCommander/mc/issues/229
'ticket/230.md': https://github.com/MidnightCommander/mc/issues/230
'ticket/231.md': https://github.com/MidnightCommander/mc/issues/231
'ticket/232.md': https://github.com/MidnightCommander/mc/issues/232
'ticket/233.md': https://github.com/MidnightCommander/mc/issues/233
'ticket/234.md': https://github.com/MidnightCommander/mc/issues/234
'ticket/235.md': https://github.com/MidnightCommander/mc/issues/235
'ticket/236.md': https://github.com/MidnightCommander/mc/issues/236
'ticket/237.md': https://github.com/MidnightCommander/mc/issues/237
'ticket/238.md': https://github.com/MidnightCommander/mc/issues/238
'ticket/239.md': https://github.com/MidnightCommander/mc/issues/239
'ticket/240.md': https://github.com/MidnightCommander/mc/issues/240
'ticket/241.md': https://github.com/MidnightCommander/mc/issues/241
'ticket/242.md': https://github.com/MidnightCommander/mc/issues/242
'ticket/243.md': https://github.com/MidnightCommander/mc/issues/243
'ticket/244.md': https://github.com/MidnightCommander/mc/issues/244
'ticket/245.md': https://github.com/MidnightCommander/mc/issues/245
'ticket/246.md': https://github.com/MidnightCommander/mc/issues/246
'ticket/247.md': https://github.com/MidnightCommander/mc/issues/247
'ticket/248.md': https://github.com/MidnightCommander/mc/issues/248
'ticket/249.md': https://github.com/MidnightCommander/mc/issues/249
'ticket/250.md': https://github.com/MidnightCommander/mc/issues/250
'ticket/251.md': https://github.com/MidnightCommander/mc/issues/251
'ticket/252.md': https://github.com/MidnightCommander/mc/issues/252
'ticket/254.md': https://github.com/MidnightCommander/mc/issues/254
'ticket/255.md': https://github.com/MidnightCommander/mc/issues/255
'ticket/256.md': https://github.com/MidnightCommander/mc/issues/256
'ticket/257.md': https://github.com/MidnightCommander/mc/issues/257
'ticket/258.md': https://github.com/MidnightCommander/mc/issues/258
'ticket/259.md': https://github.com/MidnightCommander/mc/issues/259
'ticket/260.md': https://github.com/MidnightCommander/mc/issues/260
'ticket/261.md': https://github.com/MidnightCommander/mc/issues/261
'ticket/262.md': https://github.com/MidnightCommander/mc/issues/262
'ticket/264.md': https://github.com/MidnightCommander/mc/issues/264
'ticket/265.md': https://github.com/MidnightCommander/mc/issues/265
'ticket/266.md': https://github.com/MidnightCommander/mc/issues/266
'ticket/267.md': https://github.com/MidnightCommander/mc/issues/267
'ticket/268.md': https://github.com/MidnightCommander/mc/issues/268
'ticket/269.md': https://github.com/MidnightCommander/mc/issues/269
'ticket/270.md': https://github.com/MidnightCommander/mc/issues/270
'ticket/271.md': https://github.com/MidnightCommander/mc/issues/271
'ticket/272.md': https://github.com/MidnightCommander/mc/issues/272
'ticket/273.md': https://github.com/MidnightCommander/mc/issues/273
'ticket/274.md': https://github.com/MidnightCommander/mc/issues/274
'ticket/275.md': https://github.com/MidnightCommander/mc/issues/275
'ticket/276.md': https://github.com/MidnightCommander/mc/issues/276
'ticket/277.md': https://github.com/MidnightCommander/mc/issues/277
'ticket/278.md': https://github.com/MidnightCommander/mc/issues/278
'ticket/279.md': https://github.com/MidnightCommander/mc/issues/279
'ticket/280.md': https://github.com/MidnightCommander/mc/issues/280
'ticket/282.md': https://github.com/MidnightCommander/mc/issues/282
'ticket/283.md': https://github.com/MidnightCommander/mc/issues/283
'ticket/284.md': https://github.com/MidnightCommander/mc/issues/284
'ticket/285.md': https://github.com/MidnightCommander/mc/issues/285
'ticket/287.md': https://github.com/MidnightCommander/mc/issues/287
'ticket/289.md': https://github.com/MidnightCommander/mc/issues/289
'ticket/290.md': https://github.com/MidnightCommander/mc/issues/290
'ticket/292.md': https://github.com/MidnightCommander/mc/issues/292
'ticket/293.md': https://github.com/MidnightCommander/mc/issues/293
'ticket/294.md': https://github.com/MidnightCommander/mc/issues/294
'ticket/295.md': https://github.com/MidnightCommander/mc/issues/295
'ticket/296.md': https://github.com/MidnightCommander/mc/issues/296
'ticket/298.md': https://github.com/MidnightCommander/mc/issues/298
'ticket/299.md': https://github.com/MidnightCommander/mc/issues/299
'ticket/301.md': https://github.com/MidnightCommander/mc/issues/301
'ticket/302.md': https://github.com/MidnightCommander/mc/issues/302
'ticket/303.md': https://github.com/MidnightCommander/mc/issues/303
'ticket/304.md': https://github.com/MidnightCommander/mc/issues/304
'ticket/305.md': https://github.com/MidnightCommander/mc/issues/305
'ticket/306.md': https://github.com/MidnightCommander/mc/issues/306
'ticket/307.md': https://github.com/MidnightCommander/mc/issues/307
'ticket/308.md': https://github.com/MidnightCommander/mc/issues/308
'ticket/309.md': https://github.com/MidnightCommander/mc/issues/309
'ticket/310.md': https://github.com/MidnightCommander/mc/issues/310
'ticket/311.md': https://github.com/MidnightCommander/mc/issues/311
'ticket/312.md': https://github.com/MidnightCommander/mc/issues/312
'ticket/313.md': https://github.com/MidnightCommander/mc/issues/313
'ticket/314.md': https://github.com/MidnightCommander/mc/issues/314
'ticket/315.md': https://github.com/MidnightCommander/mc/issues/315
'ticket/316.md': https://github.com/MidnightCommander/mc/issues/316
'ticket/317.md': https://github.com/MidnightCommander/mc/issues/317
'ticket/318.md': https://github.com/MidnightCommander/mc/issues/318
'ticket/319.md': https://github.com/MidnightCommander/mc/issues/319
'ticket/320.md': https://github.com/MidnightCommander/mc/issues/320
'ticket/321.md': https://github.com/MidnightCommander/mc/issues/321
'ticket/322.md': https://github.com/MidnightCommander/mc/issues/322
'ticket/323.md': https://github.com/MidnightCommander/mc/issues/323
'ticket/324.md': https://github.com/MidnightCommander/mc/issues/324
'ticket/325.md': https://github.com/MidnightCommander/mc/issues/325
'ticket/326.md': https://github.com/MidnightCommander/mc/issues/326
'ticket/327.md': https://github.com/MidnightCommander/mc/issues/327
'ticket/328.md': https://github.com/MidnightCommander/mc/issues/328
'ticket/329.md': https://github.com/MidnightCommander/mc/issues/329
'ticket/330.md': https://github.com/MidnightCommander/mc/issues/330
'ticket/332.md': https://github.com/MidnightCommander/mc/issues/332
'ticket/334.md': https://github.com/MidnightCommander/mc/issues/334
'ticket/335.md': https://github.com/MidnightCommander/mc/issues/335
'ticket/336.md': https://github.com/MidnightCommander/mc/issues/336
'ticket/337.md': https://github.com/MidnightCommander/mc/issues/337
'ticket/339.md': https://github.com/MidnightCommander/mc/issues/339
'ticket/340.md': https://github.com/MidnightCommander/mc/issues/340
'ticket/341.md': https://github.com/MidnightCommander/mc/issues/341
'ticket/342.md': https://github.com/MidnightCommander/mc/issues/342
'ticket/343.md': https://github.com/MidnightCommander/mc/issues/343
'ticket/344.md': https://github.com/MidnightCommander/mc/issues/344
'ticket/345.md': https://github.com/MidnightCommander/mc/issues/345
'ticket/346.md': https://github.com/MidnightCommander/mc/issues/346
'ticket/347.md': https://github.com/MidnightCommander/mc/issues/347
'ticket/348.md': https://github.com/MidnightCommander/mc/issues/348
'ticket/349.md': https://github.com/MidnightCommander/mc/issues/349
'ticket/350.md': https://github.com/MidnightCommander/mc/issues/350
'ticket/351.md': https://github.com/MidnightCommander/mc/issues/351
'ticket/352.md': https://github.com/MidnightCommander/mc/issues/352
'ticket/353.md': https://github.com/MidnightCommander/mc/issues/353
'ticket/354.md': https://github.com/MidnightCommander/mc/issues/354
'ticket/355.md': https://github.com/MidnightCommander/mc/issues/355
'ticket/356.md': https://github.com/MidnightCommander/mc/issues/356
'ticket/357.md': https://github.com/MidnightCommander/mc/issues/357
'ticket/358.md': https://github.com/MidnightCommander/mc/issues/358
'ticket/359.md': https://github.com/MidnightCommander/mc/issues/359
'ticket/360.md': https://github.com/MidnightCommander/mc/issues/360
'ticket/361.md': https://github.com/MidnightCommander/mc/issues/361
'ticket/362.md': https://github.com/MidnightCommander/mc/issues/362
'ticket/363.md': https://github.com/MidnightCommander/mc/issues/363
'ticket/364.md': https://github.com/MidnightCommander/mc/issues/364
'ticket/365.md': https://github.com/MidnightCommander/mc/issues/365
'ticket/366.md': https://github.com/MidnightCommander/mc/issues/366
'ticket/367.md': https://github.com/MidnightCommander/mc/issues/367
'ticket/368.md': https://github.com/MidnightCommander/mc/issues/368
'ticket/369.md': https://github.com/MidnightCommander/mc/issues/369
'ticket/370.md': https://github.com/MidnightCommander/mc/issues/370
'ticket/371.md': https://github.com/MidnightCommander/mc/issues/371
'ticket/372.md': https://github.com/MidnightCommander/mc/issues/372
'ticket/373.md': https://github.com/MidnightCommander/mc/issues/373
'ticket/374.md': https://github.com/MidnightCommander/mc/issues/374
'ticket/375.md': https://github.com/MidnightCommander/mc/issues/375
'ticket/377.md': https://github.com/MidnightCommander/mc/issues/377
'ticket/378.md': https://github.com/MidnightCommander/mc/issues/378
'ticket/379.md': https://github.com/MidnightCommander/mc/issues/379
'ticket/380.md': https://github.com/MidnightCommander/mc/issues/380
'ticket/381.md': https://github.com/MidnightCommander/mc/issues/381
'ticket/382.md': https://github.com/MidnightCommander/mc/issues/382
'ticket/383.md': https://github.com/MidnightCommander/mc/issues/383
'ticket/384.md': https://github.com/MidnightCommander/mc/issues/384
'ticket/385.md': https://github.com/MidnightCommander/mc/issues/385
'ticket/386.md': https://github.com/MidnightCommander/mc/issues/386
'ticket/387.md': https://github.com/MidnightCommander/mc/issues/387
'ticket/388.md': https://github.com/MidnightCommander/mc/issues/388
'ticket/389.md': https://github.com/MidnightCommander/mc/issues/389
'ticket/390.md': https://github.com/MidnightCommander/mc/issues/390
'ticket/391.md': https://github.com/MidnightCommander/mc/issues/391
'ticket/392.md': https://github.com/MidnightCommander/mc/issues/392
'ticket/393.md': https://github.com/MidnightCommander/mc/issues/393
'ticket/394.md': https://github.com/MidnightCommander/mc/issues/394
'ticket/395.md': https://github.com/MidnightCommander/mc/issues/395
'ticket/397.md': https://github.com/MidnightCommander/mc/issues/397
'ticket/398.md': https://github.com/MidnightCommander/mc/issues/398
'ticket/399.md': https://github.com/MidnightCommander/mc/issues/399
'ticket/400.md': https://github.com/MidnightCommander/mc/issues/400
'ticket/401.md': https://github.com/MidnightCommander/mc/issues/401
'ticket/402.md': https://github.com/MidnightCommander/mc/issues/402
'ticket/403.md': https://github.com/MidnightCommander/mc/issues/403
'ticket/404.md': https://github.com/MidnightCommander/mc/issues/404
'ticket/405.md': https://github.com/MidnightCommander/mc/issues/405
'ticket/406.md': https://github.com/MidnightCommander/mc/issues/406
'ticket/407.md': https://github.com/MidnightCommander/mc/issues/407
'ticket/408.md': https://github.com/MidnightCommander/mc/issues/408
'ticket/409.md': https://github.com/MidnightCommander/mc/issues/409
'ticket/410.md': https://github.com/MidnightCommander/mc/issues/410
'ticket/411.md': https://github.com/MidnightCommander/mc/issues/411
'ticket/412.md': https://github.com/MidnightCommander/mc/issues/412
'ticket/413.md': https://github.com/MidnightCommander/mc/issues/413
'ticket/414.md': https://github.com/MidnightCommander/mc/issues/414
'ticket/415.md': https://github.com/MidnightCommander/mc/issues/415
'ticket/416.md': https://github.com/MidnightCommander/mc/issues/416
'ticket/417.md': https://github.com/MidnightCommander/mc/issues/417
'ticket/418.md': https://github.com/MidnightCommander/mc/issues/418
'ticket/419.md': https://github.com/MidnightCommander/mc/issues/419
'ticket/421.md': https://github.com/MidnightCommander/mc/issues/421
'ticket/422.md': https://github.com/MidnightCommander/mc/issues/422
'ticket/424.md': https://github.com/MidnightCommander/mc/issues/424
'ticket/426.md': https://github.com/MidnightCommander/mc/issues/426
'ticket/427.md': https://github.com/MidnightCommander/mc/issues/427
'ticket/1364.md': https://github.com/MidnightCommander/mc/issues/1364
'ticket/1365.md': https://github.com/MidnightCommander/mc/issues/1365
'ticket/1366.md': https://github.com/MidnightCommander/mc/issues/1366
'ticket/1367.md': https://github.com/MidnightCommander/mc/issues/1367
'ticket/1368.md': https://github.com/MidnightCommander/mc/issues/1368
'ticket/1369.md': https://github.com/MidnightCommander/mc/issues/1369
'ticket/1370.md': https://github.com/MidnightCommander/mc/issues/1370
'ticket/1371.md': https://github.com/MidnightCommander/mc/issues/1371
'ticket/1372.md': https://github.com/MidnightCommander/mc/issues/1372
'ticket/1373.md': https://github.com/MidnightCommander/mc/issues/1373
'ticket/1374.md': https://github.com/MidnightCommander/mc/issues/1374
'ticket/1375.md': https://github.com/MidnightCommander/mc/issues/1375
'ticket/1376.md': https://github.com/MidnightCommander/mc/issues/1376
'ticket/1377.md': https://github.com/MidnightCommander/mc/issues/1377
'ticket/1378.md': https://github.com/MidnightCommander/mc/issues/1378
'ticket/1379.md': https://github.com/MidnightCommander/mc/issues/1379
'ticket/1380.md': https://github.com/MidnightCommander/mc/issues/1380
'ticket/1381.md': https://github.com/MidnightCommander/mc/issues/1381
'ticket/1382.md': https://github.com/MidnightCommander/mc/issues/1382
'ticket/1383.md': https://github.com/MidnightCommander/mc/issues/1383
'ticket/1384.md': https://github.com/MidnightCommander/mc/issues/1384
'ticket/1385.md': https://github.com/MidnightCommander/mc/issues/1385
'ticket/1386.md': https://github.com/MidnightCommander/mc/issues/1386
'ticket/1387.md': https://github.com/MidnightCommander/mc/issues/1387
'ticket/1388.md': https://github.com/MidnightCommander/mc/issues/1388
'ticket/1389.md': https://github.com/MidnightCommander/mc/issues/1389
'ticket/1390.md': https://github.com/MidnightCommander/mc/issues/1390
'ticket/1391.md': https://github.com/MidnightCommander/mc/issues/1391
'ticket/1392.md': https://github.com/MidnightCommander/mc/issues/1392
'ticket/1393.md': https://github.com/MidnightCommander/mc/issues/1393
'ticket/1394.md': https://github.com/MidnightCommander/mc/issues/1394
'ticket/1395.md': https://github.com/MidnightCommander/mc/issues/1395
'ticket/1396.md': https://github.com/MidnightCommander/mc/issues/1396
'ticket/1397.md': https://github.com/MidnightCommander/mc/issues/1397
'ticket/1398.md': https://github.com/MidnightCommander/mc/issues/1398
'ticket/1399.md': https://github.com/MidnightCommander/mc/issues/1399
'ticket/1400.md': https://github.com/MidnightCommander/mc/issues/1400
'ticket/1401.md': https://github.com/MidnightCommander/mc/issues/1401
'ticket/1402.md': https://github.com/MidnightCommander/mc/issues/1402
'ticket/1403.md': https://github.com/MidnightCommander/mc/issues/1403
'ticket/1404.md': https://github.com/MidnightCommander/mc/issues/1404
'ticket/1405.md': https://github.com/MidnightCommander/mc/issues/1405
'ticket/1406.md': https://github.com/MidnightCommander/mc/issues/1406
'ticket/1407.md': https://github.com/MidnightCommander/mc/issues/1407
'ticket/1408.md': https://github.com/MidnightCommander/mc/issues/1408
'ticket/1409.md': https://github.com/MidnightCommander/mc/issues/1409
'ticket/1410.md': https://github.com/MidnightCommander/mc/issues/1410
'ticket/1411.md': https://github.com/MidnightCommander/mc/issues/1411
'ticket/1412.md': https://github.com/MidnightCommander/mc/issues/1412
'ticket/1413.md': https://github.com/MidnightCommander/mc/issues/1413
'ticket/1414.md': https://github.com/MidnightCommander/mc/issues/1414
'ticket/1415.md': https://github.com/MidnightCommander/mc/issues/1415
'ticket/1416.md': https://github.com/MidnightCommander/mc/issues/1416
'ticket/1417.md': https://github.com/MidnightCommander/mc/issues/1417
'ticket/1418.md': https://github.com/MidnightCommander/mc/issues/1418
'ticket/1419.md': https://github.com/MidnightCommander/mc/issues/1419
'ticket/1420.md': https://github.com/MidnightCommander/mc/issues/1420
'ticket/1421.md': https://github.com/MidnightCommander/mc/issues/1421
'ticket/1422.md': https://github.com/MidnightCommander/mc/issues/1422
'ticket/1423.md': https://github.com/MidnightCommander/mc/issues/1423
'ticket/1424.md': https://github.com/MidnightCommander/mc/issues/1424
'ticket/1425.md': https://github.com/MidnightCommander/mc/issues/1425
'ticket/1426.md': https://github.com/MidnightCommander/mc/issues/1426
'ticket/1427.md': https://github.com/MidnightCommander/mc/issues/1427
'ticket/1428.md': https://github.com/MidnightCommander/mc/issues/1428
'ticket/1429.md': https://github.com/MidnightCommander/mc/issues/1429
'ticket/1430.md': https://github.com/MidnightCommander/mc/issues/1430
'ticket/1431.md': https://github.com/MidnightCommander/mc/issues/1431
'ticket/1432.md': https://github.com/MidnightCommander/mc/issues/1432
'ticket/1433.md': https://github.com/MidnightCommander/mc/issues/1433
'ticket/1434.md': https://github.com/MidnightCommander/mc/issues/1434
'ticket/1435.md': https://github.com/MidnightCommander/mc/issues/1435
'ticket/1436.md': https://github.com/MidnightCommander/mc/issues/1436
'ticket/1437.md': https://github.com/MidnightCommander/mc/issues/1437
'ticket/1438.md': https://github.com/MidnightCommander/mc/issues/1438
'ticket/1439.md': https://github.com/MidnightCommander/mc/issues/1439
'ticket/1440.md': https://github.com/MidnightCommander/mc/issues/1440
'ticket/1441.md': https://github.com/MidnightCommander/mc/issues/1441
'ticket/1442.md': https://github.com/MidnightCommander/mc/issues/1442
'ticket/1443.md': https://github.com/MidnightCommander/mc/issues/1443
'ticket/1444.md': https://github.com/MidnightCommander/mc/issues/1444
'ticket/1445.md': https://github.com/MidnightCommander/mc/issues/1445
'ticket/1446.md': https://github.com/MidnightCommander/mc/issues/1446
'ticket/1447.md': https://github.com/MidnightCommander/mc/issues/1447
'ticket/1448.md': https://github.com/MidnightCommander/mc/issues/1448
'ticket/1449.md': https://github.com/MidnightCommander/mc/issues/1449
'ticket/1450.md': https://github.com/MidnightCommander/mc/issues/1450
'ticket/1451.md': https://github.com/MidnightCommander/mc/issues/1451
'ticket/1452.md': https://github.com/MidnightCommander/mc/issues/1452
'ticket/1453.md': https://github.com/MidnightCommander/mc/issues/1453
'ticket/1454.md': https://github.com/MidnightCommander/mc/issues/1454
'ticket/1455.md': https://github.com/MidnightCommander/mc/issues/1455
'ticket/1456.md': https://github.com/MidnightCommander/mc/issues/1456
'ticket/1457.md': https://github.com/MidnightCommander/mc/issues/1457
'ticket/1458.md': https://github.com/MidnightCommander/mc/issues/1458
'ticket/1459.md': https://github.com/MidnightCommander/mc/issues/1459
'ticket/1460.md': https://github.com/MidnightCommander/mc/issues/1460
'ticket/1461.md': https://github.com/MidnightCommander/mc/issues/1461
'ticket/1462.md': https://github.com/MidnightCommander/mc/issues/1462
'ticket/1463.md': https://github.com/MidnightCommander/mc/issues/1463
'ticket/1464.md': https://github.com/MidnightCommander/mc/issues/1464
'ticket/1465.md': https://github.com/MidnightCommander/mc/issues/1465
'ticket/1466.md': https://github.com/MidnightCommander/mc/issues/1466
'ticket/1467.md': https://github.com/MidnightCommander/mc/issues/1467
'ticket/1468.md': https://github.com/MidnightCommander/mc/issues/1468
'ticket/1469.md': https://github.com/MidnightCommander/mc/issues/1469
'ticket/1470.md': https://github.com/MidnightCommander/mc/issues/1470
'ticket/1471.md': https://github.com/MidnightCommander/mc/issues/1471
'ticket/1472.md': https://github.com/MidnightCommander/mc/issues/1472
'ticket/1473.md': https://github.com/MidnightCommander/mc/issues/1473
'ticket/1474.md': https://github.com/MidnightCommander/mc/issues/1474
'ticket/1475.md': https://github.com/MidnightCommander/mc/issues/1475
'ticket/1476.md': https://github.com/MidnightCommander/mc/issues/1476
'ticket/1477.md': https://github.com/MidnightCommander/mc/issues/1477
'ticket/1478.md': https://github.com/MidnightCommander/mc/issues/1478
'ticket/1479.md': https://github.com/MidnightCommander/mc/issues/1479
'ticket/1480.md': https://github.com/MidnightCommander/mc/issues/1480
'ticket/1481.md': https://github.com/MidnightCommander/mc/issues/1481
'ticket/1482.md': https://github.com/MidnightCommander/mc/issues/1482
'ticket/1483.md': https://github.com/MidnightCommander/mc/issues/1483
'ticket/1484.md': https://github.com/MidnightCommander/mc/issues/1484
'ticket/1485.md': https://github.com/MidnightCommander/mc/issues/1485
'ticket/1486.md': https://github.com/MidnightCommander/mc/issues/1486
'ticket/1487.md': https://github.com/MidnightCommander/mc/issues/1487
'ticket/1488.md': https://github.com/MidnightCommander/mc/issues/1488
'ticket/1489.md': https://github.com/MidnightCommander/mc/issues/1489
'ticket/1490.md': https://github.com/MidnightCommander/mc/issues/1490
'ticket/1491.md': https://github.com/MidnightCommander/mc/issues/1491
'ticket/1492.md': https://github.com/MidnightCommander/mc/issues/1492
'ticket/1493.md': https://github.com/MidnightCommander/mc/issues/1493
'ticket/1494.md': https://github.com/MidnightCommander/mc/issues/1494
'ticket/1495.md': https://github.com/MidnightCommander/mc/issues/1495
'ticket/1496.md': https://github.com/MidnightCommander/mc/issues/1496
'ticket/1497.md': https://github.com/MidnightCommander/mc/issues/1497
'ticket/1498.md': https://github.com/MidnightCommander/mc/issues/1498
'ticket/1499.md': https://github.com/MidnightCommander/mc/issues/1499
'ticket/1500.md': https://github.com/MidnightCommander/mc/issues/1500
'ticket/1501.md': https://github.com/MidnightCommander/mc/issues/1501
'ticket/1502.md': https://github.com/MidnightCommander/mc/issues/1502
'ticket/1503.md': https://github.com/MidnightCommander/mc/issues/1503
'ticket/1504.md': https://github.com/MidnightCommander/mc/issues/1504
'ticket/1505.md': https://github.com/MidnightCommander/mc/issues/1505
'ticket/1506.md': https://github.com/MidnightCommander/mc/issues/1506
'ticket/1507.md': https://github.com/MidnightCommander/mc/issues/1507
'ticket/1508.md': https://github.com/MidnightCommander/mc/issues/1508
'ticket/1509.md': https://github.com/MidnightCommander/mc/issues/1509
'ticket/1510.md': https://github.com/MidnightCommander/mc/issues/1510
'ticket/1511.md': https://github.com/MidnightCommander/mc/issues/1511
'ticket/1512.md': https://github.com/MidnightCommander/mc/issues/1512
'ticket/1513.md': https://github.com/MidnightCommander/mc/issues/1513
'ticket/1514.md': https://github.com/MidnightCommander/mc/issues/1514
'ticket/1515.md': https://github.com/MidnightCommander/mc/issues/1515
'ticket/1516.md': https://github.com/MidnightCommander/mc/issues/1516
'ticket/1517.md': https://github.com/MidnightCommander/mc/issues/1517
'ticket/1518.md': https://github.com/MidnightCommander/mc/issues/1518
'ticket/1519.md': https://github.com/MidnightCommander/mc/issues/1519
'ticket/1520.md': https://github.com/MidnightCommander/mc/issues/1520
'ticket/1521.md': https://github.com/MidnightCommander/mc/issues/1521
'ticket/1522.md': https://github.com/MidnightCommander/mc/issues/1522
'ticket/1523.md': https://github.com/MidnightCommander/mc/issues/1523
'ticket/1524.md': https://github.com/MidnightCommander/mc/issues/1524
'ticket/1525.md': https://github.com/MidnightCommander/mc/issues/1525
'ticket/1526.md': https://github.com/MidnightCommander/mc/issues/1526
'ticket/1527.md': https://github.com/MidnightCommander/mc/issues/1527
'ticket/1528.md': https://github.com/MidnightCommander/mc/issues/1528
'ticket/1529.md': https://github.com/MidnightCommander/mc/issues/1529
'ticket/1530.md': https://github.com/MidnightCommander/mc/issues/1530
'ticket/1531.md': https://github.com/MidnightCommander/mc/issues/1531
'ticket/1532.md': https://github.com/MidnightCommander/mc/issues/1532
'ticket/1533.md': https://github.com/MidnightCommander/mc/issues/1533
'ticket/1534.md': https://github.com/MidnightCommander/mc/issues/1534
'ticket/1535.md': https://github.com/MidnightCommander/mc/issues/1535
'ticket/1536.md': https://github.com/MidnightCommander/mc/issues/1536
'ticket/1537.md': https://github.com/MidnightCommander/mc/issues/1537
'ticket/1538.md': https://github.com/MidnightCommander/mc/issues/1538
'ticket/1539.md': https://github.com/MidnightCommander/mc/issues/1539
'ticket/1540.md': https://github.com/MidnightCommander/mc/issues/1540
'ticket/1541.md': https://github.com/MidnightCommander/mc/issues/1541
'ticket/1542.md': https://github.com/MidnightCommander/mc/issues/1542
'ticket/1543.md': https://github.com/MidnightCommander/mc/issues/1543
'ticket/1544.md': https://github.com/MidnightCommander/mc/issues/1544
'ticket/1545.md': https://github.com/MidnightCommander/mc/issues/1545
'ticket/1546.md': https://github.com/MidnightCommander/mc/issues/1546
'ticket/1547.md': https://github.com/MidnightCommander/mc/issues/1547
'ticket/1548.md': https://github.com/MidnightCommander/mc/issues/1548
'ticket/1549.md': https://github.com/MidnightCommander/mc/issues/1549
'ticket/1550.md': https://github.com/MidnightCommander/mc/issues/1550
'ticket/1551.md': https://github.com/MidnightCommander/mc/issues/1551
'ticket/1552.md': https://github.com/MidnightCommander/mc/issues/1552
'ticket/1553.md': https://github.com/MidnightCommander/mc/issues/1553
'ticket/1554.md': https://github.com/MidnightCommander/mc/issues/1554
'ticket/1555.md': https://github.com/MidnightCommander/mc/issues/1555
'ticket/1556.md': https://github.com/MidnightCommander/mc/issues/1556
'ticket/1557.md': https://github.com/MidnightCommander/mc/issues/1557
'ticket/1558.md': https://github.com/MidnightCommander/mc/issues/1558
'ticket/1559.md': https://github.com/MidnightCommander/mc/issues/1559
'ticket/1560.md': https://github.com/MidnightCommander/mc/issues/1560
'ticket/1561.md': https://github.com/MidnightCommander/mc/issues/1561
'ticket/1562.md': https://github.com/MidnightCommander/mc/issues/1562
'ticket/1563.md': https://github.com/MidnightCommander/mc/issues/1563
'ticket/1564.md': https://github.com/MidnightCommander/mc/issues/1564
'ticket/1565.md': https://github.com/MidnightCommander/mc/issues/1565
'ticket/1566.md': https://github.com/MidnightCommander/mc/issues/1566
'ticket/1567.md': https://github.com/MidnightCommander/mc/issues/1567
'ticket/1568.md': https://github.com/MidnightCommander/mc/issues/1568
'ticket/1569.md': https://github.com/MidnightCommander/mc/issues/1569
'ticket/1570.md': https://github.com/MidnightCommander/mc/issues/1570
'ticket/1571.md': https://github.com/MidnightCommander/mc/issues/1571
'ticket/1572.md': https://github.com/MidnightCommander/mc/issues/1572
'ticket/1573.md': https://github.com/MidnightCommander/mc/issues/1573
'ticket/1574.md': https://github.com/MidnightCommander/mc/issues/1574
'ticket/1575.md': https://github.com/MidnightCommander/mc/issues/1575
'ticket/1576.md': https://github.com/MidnightCommander/mc/issues/1576
'ticket/1577.md': https://github.com/MidnightCommander/mc/issues/1577
'ticket/1578.md': https://github.com/MidnightCommander/mc/issues/1578
'ticket/1579.md': https://github.com/MidnightCommander/mc/issues/1579
'ticket/1580.md': https://github.com/MidnightCommander/mc/issues/1580
'ticket/1581.md': https://github.com/MidnightCommander/mc/issues/1581
'ticket/1582.md': https://github.com/MidnightCommander/mc/issues/1582
'ticket/1583.md': https://github.com/MidnightCommander/mc/issues/1583
'ticket/1584.md': https://github.com/MidnightCommander/mc/issues/1584
'ticket/1585.md': https://github.com/MidnightCommander/mc/issues/1585
'ticket/1586.md': https://github.com/MidnightCommander/mc/issues/1586
'ticket/1587.md': https://github.com/MidnightCommander/mc/issues/1587
'ticket/1588.md': https://github.com/MidnightCommander/mc/issues/1588
'ticket/1589.md': https://github.com/MidnightCommander/mc/issues/1589
'ticket/1590.md': https://github.com/MidnightCommander/mc/issues/1590
'ticket/1591.md': https://github.com/MidnightCommander/mc/issues/1591
'ticket/1592.md': https://github.com/MidnightCommander/mc/issues/1592
'ticket/1593.md': https://github.com/MidnightCommander/mc/issues/1593
'ticket/1594.md': https://github.com/MidnightCommander/mc/issues/1594
'ticket/1595.md': https://github.com/MidnightCommander/mc/issues/1595
'ticket/1596.md': https://github.com/MidnightCommander/mc/issues/1596
'ticket/1597.md': https://github.com/MidnightCommander/mc/issues/1597
'ticket/1598.md': https://github.com/MidnightCommander/mc/issues/1598
'ticket/1599.md': https://github.com/MidnightCommander/mc/issues/1599
'ticket/1600.md': https://github.com/MidnightCommander/mc/issues/1600
'ticket/1601.md': https://github.com/MidnightCommander/mc/issues/1601
'ticket/1602.md': https://github.com/MidnightCommander/mc/issues/1602
'ticket/1603.md': https://github.com/MidnightCommander/mc/issues/1603
'ticket/1604.md': https://github.com/MidnightCommander/mc/issues/1604
'ticket/1605.md': https://github.com/MidnightCommander/mc/issues/1605
'ticket/1606.md': https://github.com/MidnightCommander/mc/issues/1606
'ticket/1607.md': https://github.com/MidnightCommander/mc/issues/1607
'ticket/1608.md': https://github.com/MidnightCommander/mc/issues/1608
'ticket/1609.md': https://github.com/MidnightCommander/mc/issues/1609
'ticket/1610.md': https://github.com/MidnightCommander/mc/issues/1610
'ticket/1611.md': https://github.com/MidnightCommander/mc/issues/1611
'ticket/1612.md': https://github.com/MidnightCommander/mc/issues/1612
'ticket/1613.md': https://github.com/MidnightCommander/mc/issues/1613
'ticket/1614.md': https://github.com/MidnightCommander/mc/issues/1614
'ticket/1615.md': https://github.com/MidnightCommander/mc/issues/1615
'ticket/1616.md': https://github.com/MidnightCommander/mc/issues/1616
'ticket/1617.md': https://github.com/MidnightCommander/mc/issues/1617
'ticket/1618.md': https://github.com/MidnightCommander/mc/issues/1618
'ticket/1619.md': https://github.com/MidnightCommander/mc/issues/1619
'ticket/1620.md': https://github.com/MidnightCommander/mc/issues/1620
'ticket/1621.md': https://github.com/MidnightCommander/mc/issues/1621
'ticket/1622.md': https://github.com/MidnightCommander/mc/issues/1622
'ticket/1623.md': https://github.com/MidnightCommander/mc/issues/1623
'ticket/1624.md': https://github.com/MidnightCommander/mc/issues/1624
'ticket/1625.md': https://github.com/MidnightCommander/mc/issues/1625
'ticket/1626.md': https://github.com/MidnightCommander/mc/issues/1626
'ticket/1627.md': https://github.com/MidnightCommander/mc/issues/1627
'ticket/1628.md': https://github.com/MidnightCommander/mc/issues/1628
'ticket/1629.md': https://github.com/MidnightCommander/mc/issues/1629
'ticket/1630.md': https://github.com/MidnightCommander/mc/issues/1630
'ticket/1631.md': https://github.com/MidnightCommander/mc/issues/1631
'ticket/1632.md': https://github.com/MidnightCommander/mc/issues/1632
'ticket/1633.md': https://github.com/MidnightCommander/mc/issues/1633
'ticket/1634.md': https://github.com/MidnightCommander/mc/issues/1634
'ticket/1635.md': https://github.com/MidnightCommander/mc/issues/1635
'ticket/1636.md': https://github.com/MidnightCommander/mc/issues/1636
'ticket/1637.md': https://github.com/MidnightCommander/mc/issues/1637
'ticket/1638.md': https://github.com/MidnightCommander/mc/issues/1638
'ticket/1639.md': https://github.com/MidnightCommander/mc/issues/1639
'ticket/1640.md': https://github.com/MidnightCommander/mc/issues/1640
'ticket/1641.md': https://github.com/MidnightCommander/mc/issues/1641
'ticket/1642.md': https://github.com/MidnightCommander/mc/issues/1642
'ticket/1643.md': https://github.com/MidnightCommander/mc/issues/1643
'ticket/1644.md': https://github.com/MidnightCommander/mc/issues/1644
'ticket/1645.md': https://github.com/MidnightCommander/mc/issues/1645
'ticket/1646.md': https://github.com/MidnightCommander/mc/issues/1646
'ticket/1647.md': https://github.com/MidnightCommander/mc/issues/1647
'ticket/1648.md': https://github.com/MidnightCommander/mc/issues/1648
'ticket/1649.md': https://github.com/MidnightCommander/mc/issues/1649
'ticket/1650.md': https://github.com/MidnightCommander/mc/issues/1650
'ticket/1651.md': https://github.com/MidnightCommander/mc/issues/1651
'ticket/1652.md': https://github.com/MidnightCommander/mc/issues/1652
'ticket/1653.md': https://github.com/MidnightCommander/mc/issues/1653
'ticket/1654.md': https://github.com/MidnightCommander/mc/issues/1654
'ticket/1655.md': https://github.com/MidnightCommander/mc/issues/1655
'ticket/1656.md': https://github.com/MidnightCommander/mc/issues/1656
'ticket/1657.md': https://github.com/MidnightCommander/mc/issues/1657
'ticket/1658.md': https://github.com/MidnightCommander/mc/issues/1658
'ticket/1659.md': https://github.com/MidnightCommander/mc/issues/1659
'ticket/1660.md': https://github.com/MidnightCommander/mc/issues/1660
'ticket/1661.md': https://github.com/MidnightCommander/mc/issues/1661
'ticket/1662.md': https://github.com/MidnightCommander/mc/issues/1662
'ticket/1663.md': https://github.com/MidnightCommander/mc/issues/1663
'ticket/1664.md': https://github.com/MidnightCommander/mc/issues/1664
'ticket/1665.md': https://github.com/MidnightCommander/mc/issues/1665
'ticket/1666.md': https://github.com/MidnightCommander/mc/issues/1666
'ticket/1667.md': https://github.com/MidnightCommander/mc/issues/1667
'ticket/1668.md': https://github.com/MidnightCommander/mc/issues/1668
'ticket/1669.md': https://github.com/MidnightCommander/mc/issues/1669
'ticket/1670.md': https://github.com/MidnightCommander/mc/issues/1670
'ticket/1671.md': https://github.com/MidnightCommander/mc/issues/1671
'ticket/1672.md': https://github.com/MidnightCommander/mc/issues/1672
'ticket/1673.md': https://github.com/MidnightCommander/mc/issues/1673
'ticket/1674.md': https://github.com/MidnightCommander/mc/issues/1674
'ticket/1675.md': https://github.com/MidnightCommander/mc/issues/1675
'ticket/1676.md': https://github.com/MidnightCommander/mc/issues/1676
'ticket/1677.md': https://github.com/MidnightCommander/mc/issues/1677
'ticket/1678.md': https://github.com/MidnightCommander/mc/issues/1678
'ticket/1679.md': https://github.com/MidnightCommander/mc/issues/1679
'ticket/1680.md': https://github.com/MidnightCommander/mc/issues/1680
'ticket/1681.md': https://github.com/MidnightCommander/mc/issues/1681
'ticket/1682.md': https://github.com/MidnightCommander/mc/issues/1682
'ticket/1683.md': https://github.com/MidnightCommander/mc/issues/1683
'ticket/1684.md': https://github.com/MidnightCommander/mc/issues/1684
'ticket/1685.md': https://github.com/MidnightCommander/mc/issues/1685
'ticket/1686.md': https://github.com/MidnightCommander/mc/issues/1686
'ticket/1687.md': https://github.com/MidnightCommander/mc/issues/1687
'ticket/1688.md': https://github.com/MidnightCommander/mc/issues/1688
'ticket/1689.md': https://github.com/MidnightCommander/mc/issues/1689
'ticket/1690.md': https://github.com/MidnightCommander/mc/issues/1690
'ticket/1691.md': https://github.com/MidnightCommander/mc/issues/1691
'ticket/1692.md': https://github.com/MidnightCommander/mc/issues/1692
'ticket/1693.md': https://github.com/MidnightCommander/mc/issues/1693
'ticket/1694.md': https://github.com/MidnightCommander/mc/issues/1694
'ticket/1695.md': https://github.com/MidnightCommander/mc/issues/1695
'ticket/1696.md': https://github.com/MidnightCommander/mc/issues/1696
'ticket/1697.md': https://github.com/MidnightCommander/mc/issues/1697
'ticket/1698.md': https://github.com/MidnightCommander/mc/issues/1698
'ticket/1699.md': https://github.com/MidnightCommander/mc/issues/1699
'ticket/1700.md': https://github.com/MidnightCommander/mc/issues/1700
'ticket/1701.md': https://github.com/MidnightCommander/mc/issues/1701
'ticket/1702.md': https://github.com/MidnightCommander/mc/issues/1702
'ticket/1703.md': https://github.com/MidnightCommander/mc/issues/1703
'ticket/1704.md': https://github.com/MidnightCommander/mc/issues/1704
'ticket/1705.md': https://github.com/MidnightCommander/mc/issues/1705
'ticket/1706.md': https://github.com/MidnightCommander/mc/issues/1706
'ticket/1707.md': https://github.com/MidnightCommander/mc/issues/1707
'ticket/1708.md': https://github.com/MidnightCommander/mc/issues/1708
'ticket/1709.md': https://github.com/MidnightCommander/mc/issues/1709
'ticket/1710.md': https://github.com/MidnightCommander/mc/issues/1710
'ticket/1711.md': https://github.com/MidnightCommander/mc/issues/1711
'ticket/1712.md': https://github.com/MidnightCommander/mc/issues/1712
'ticket/1713.md': https://github.com/MidnightCommander/mc/issues/1713
'ticket/1714.md': https://github.com/MidnightCommander/mc/issues/1714
'ticket/1715.md': https://github.com/MidnightCommander/mc/issues/1715
'ticket/1716.md': https://github.com/MidnightCommander/mc/issues/1716
'ticket/1717.md': https://github.com/MidnightCommander/mc/issues/1717
'ticket/1718.md': https://github.com/MidnightCommander/mc/issues/1718
'ticket/1719.md': https://github.com/MidnightCommander/mc/issues/1719
'ticket/1720.md': https://github.com/MidnightCommander/mc/issues/1720
'ticket/1721.md': https://github.com/MidnightCommander/mc/issues/1721
'ticket/1722.md': https://github.com/MidnightCommander/mc/issues/1722
'ticket/1723.md': https://github.com/MidnightCommander/mc/issues/1723
'ticket/1724.md': https://github.com/MidnightCommander/mc/issues/1724
'ticket/1725.md': https://github.com/MidnightCommander/mc/issues/1725
'ticket/1726.md': https://github.com/MidnightCommander/mc/issues/1726
'ticket/1727.md': https://github.com/MidnightCommander/mc/issues/1727
'ticket/1728.md': https://github.com/MidnightCommander/mc/issues/1728
'ticket/1729.md': https://github.com/MidnightCommander/mc/issues/1729
'ticket/1730.md': https://github.com/MidnightCommander/mc/issues/1730
'ticket/1731.md': https://github.com/MidnightCommander/mc/issues/1731
'ticket/1732.md': https://github.com/MidnightCommander/mc/issues/1732
'ticket/1733.md': https://github.com/MidnightCommander/mc/issues/1733
'ticket/1734.md': https://github.com/MidnightCommander/mc/issues/1734
'ticket/1735.md': https://github.com/MidnightCommander/mc/issues/1735
'ticket/1736.md': https://github.com/MidnightCommander/mc/issues/1736
'ticket/1737.md': https://github.com/MidnightCommander/mc/issues/1737
'ticket/1738.md': https://github.com/MidnightCommander/mc/issues/1738
'ticket/1739.md': https://github.com/MidnightCommander/mc/issues/1739
'ticket/1740.md': https://github.com/MidnightCommander/mc/issues/1740
'ticket/1741.md': https://github.com/MidnightCommander/mc/issues/1741
'ticket/1742.md': https://github.com/MidnightCommander/mc/issues/1742
'ticket/1743.md': https://github.com/MidnightCommander/mc/issues/1743
'ticket/1744.md': https://github.com/MidnightCommander/mc/issues/1744
'ticket/1745.md': https://github.com/MidnightCommander/mc/issues/1745
'ticket/1746.md': https://github.com/MidnightCommander/mc/issues/1746
'ticket/1747.md': https://github.com/MidnightCommander/mc/issues/1747
'ticket/1748.md': https://github.com/MidnightCommander/mc/issues/1748
'ticket/1749.md': https://github.com/MidnightCommander/mc/issues/1749
'ticket/1750.md': https://github.com/MidnightCommander/mc/issues/1750
'ticket/1751.md': https://github.com/MidnightCommander/mc/issues/1751
'ticket/1753.md': https://github.com/MidnightCommander/mc/issues/1753
'ticket/1754.md': https://github.com/MidnightCommander/mc/issues/1754
'ticket/1755.md': https://github.com/MidnightCommander/mc/issues/1755
'ticket/1756.md': https://github.com/MidnightCommander/mc/issues/1756
'ticket/1757.md': https://github.com/MidnightCommander/mc/issues/1757
'ticket/1758.md': https://github.com/MidnightCommander/mc/issues/1758
'ticket/1759.md': https://github.com/MidnightCommander/mc/issues/1759
'ticket/1760.md': https://github.com/MidnightCommander/mc/issues/1760
'ticket/1761.md': https://github.com/MidnightCommander/mc/issues/1761
'ticket/1762.md': https://github.com/MidnightCommander/mc/issues/1762
'ticket/1763.md': https://github.com/MidnightCommander/mc/issues/1763
'ticket/1764.md': https://github.com/MidnightCommander/mc/issues/1764
'ticket/1765.md': https://github.com/MidnightCommander/mc/issues/1765
'ticket/1766.md': https://github.com/MidnightCommander/mc/issues/1766
'ticket/1767.md': https://github.com/MidnightCommander/mc/issues/1767
'ticket/1768.md': https://github.com/MidnightCommander/mc/issues/1768
'ticket/1769.md': https://github.com/MidnightCommander/mc/issues/1769
'ticket/1770.md': https://github.com/MidnightCommander/mc/issues/1770
'ticket/1771.md': https://github.com/MidnightCommander/mc/issues/1771
'ticket/1772.md': https://github.com/MidnightCommander/mc/issues/1772
'ticket/1773.md': https://github.com/MidnightCommander/mc/issues/1773
'ticket/1774.md': https://github.com/MidnightCommander/mc/issues/1774
'ticket/1775.md': https://github.com/MidnightCommander/mc/issues/1775
'ticket/1776.md': https://github.com/MidnightCommander/mc/issues/1776
'ticket/1777.md': https://github.com/MidnightCommander/mc/issues/1777
'ticket/1778.md': https://github.com/MidnightCommander/mc/issues/1778
'ticket/1779.md': https://github.com/MidnightCommander/mc/issues/1779
'ticket/1780.md': https://github.com/MidnightCommander/mc/issues/1780
'ticket/1781.md': https://github.com/MidnightCommander/mc/issues/1781
'ticket/1782.md': https://github.com/MidnightCommander/mc/issues/1782
'ticket/1783.md': https://github.com/MidnightCommander/mc/issues/1783
'ticket/1784.md': https://github.com/MidnightCommander/mc/issues/1784
'ticket/1785.md': https://github.com/MidnightCommander/mc/issues/1785
'ticket/1786.md': https://github.com/MidnightCommander/mc/issues/1786
'ticket/1787.md': https://github.com/MidnightCommander/mc/issues/1787
'ticket/1788.md': https://github.com/MidnightCommander/mc/issues/1788
'ticket/1789.md': https://github.com/MidnightCommander/mc/issues/1789
'ticket/1790.md': https://github.com/MidnightCommander/mc/issues/1790
'ticket/1791.md': https://github.com/MidnightCommander/mc/issues/1791
'ticket/1792.md': https://github.com/MidnightCommander/mc/issues/1792
'ticket/1793.md': https://github.com/MidnightCommander/mc/issues/1793
'ticket/1794.md': https://github.com/MidnightCommander/mc/issues/1794
'ticket/1795.md': https://github.com/MidnightCommander/mc/issues/1795
'ticket/1796.md': https://github.com/MidnightCommander/mc/issues/1796
'ticket/1797.md': https://github.com/MidnightCommander/mc/issues/1797
'ticket/1798.md': https://github.com/MidnightCommander/mc/issues/1798
'ticket/1799.md': https://github.com/MidnightCommander/mc/issues/1799
'ticket/1800.md': https://github.com/MidnightCommander/mc/issues/1800
'ticket/1801.md': https://github.com/MidnightCommander/mc/issues/1801
'ticket/1802.md': https://github.com/MidnightCommander/mc/issues/1802
'ticket/1803.md': https://github.com/MidnightCommander/mc/issues/1803
'ticket/1804.md': https://github.com/MidnightCommander/mc/issues/1804
'ticket/1807.md': https://github.com/MidnightCommander/mc/issues/1807
'ticket/1808.md': https://github.com/MidnightCommander/mc/issues/1808
'ticket/1809.md': https://github.com/MidnightCommander/mc/issues/1809
'ticket/1810.md': https://github.com/MidnightCommander/mc/issues/1810
'ticket/1811.md': https://github.com/MidnightCommander/mc/issues/1811
'ticket/1812.md': https://github.com/MidnightCommander/mc/issues/1812
'ticket/1813.md': https://github.com/MidnightCommander/mc/issues/1813
'ticket/1814.md': https://github.com/MidnightCommander/mc/issues/1814
'ticket/1815.md': https://github.com/MidnightCommander/mc/issues/1815
'ticket/1816.md': https://github.com/MidnightCommander/mc/issues/1816
'ticket/1817.md': https://github.com/MidnightCommander/mc/issues/1817
'ticket/1818.md': https://github.com/MidnightCommander/mc/issues/1818
'ticket/1819.md': https://github.com/MidnightCommander/mc/issues/1819
'ticket/1820.md': https://github.com/MidnightCommander/mc/issues/1820
'ticket/1821.md': https://github.com/MidnightCommander/mc/issues/1821
'ticket/1822.md': https://github.com/MidnightCommander/mc/issues/1822
'ticket/1823.md': https://github.com/MidnightCommander/mc/issues/1823
'ticket/1824.md': https://github.com/MidnightCommander/mc/issues/1824
'ticket/1825.md': https://github.com/MidnightCommander/mc/issues/1825
'ticket/1826.md': https://github.com/MidnightCommander/mc/issues/1826
'ticket/1827.md': https://github.com/MidnightCommander/mc/issues/1827
'ticket/1828.md': https://github.com/MidnightCommander/mc/issues/1828
'ticket/1829.md': https://github.com/MidnightCommander/mc/issues/1829
'ticket/1830.md': https://github.com/MidnightCommander/mc/issues/1830
'ticket/1831.md': https://github.com/MidnightCommander/mc/issues/1831
'ticket/1832.md': https://github.com/MidnightCommander/mc/issues/1832
'ticket/1833.md': https://github.com/MidnightCommander/mc/issues/1833
'ticket/1834.md': https://github.com/MidnightCommander/mc/issues/1834
'ticket/1835.md': https://github.com/MidnightCommander/mc/issues/1835
'ticket/1836.md': https://github.com/MidnightCommander/mc/issues/1836
'ticket/1837.md': https://github.com/MidnightCommander/mc/issues/1837
'ticket/1838.md': https://github.com/MidnightCommander/mc/issues/1838
'ticket/1839.md': https://github.com/MidnightCommander/mc/issues/1839
'ticket/1840.md': https://github.com/MidnightCommander/mc/issues/1840
'ticket/1841.md': https://github.com/MidnightCommander/mc/issues/1841
'ticket/1842.md': https://github.com/MidnightCommander/mc/issues/1842
'ticket/1843.md': https://github.com/MidnightCommander/mc/issues/1843
'ticket/1844.md': https://github.com/MidnightCommander/mc/issues/1844
'ticket/1845.md': https://github.com/MidnightCommander/mc/issues/1845
'ticket/1846.md': https://github.com/MidnightCommander/mc/issues/1846
'ticket/1847.md': https://github.com/MidnightCommander/mc/issues/1847
'ticket/1848.md': https://github.com/MidnightCommander/mc/issues/1848
'ticket/1849.md': https://github.com/MidnightCommander/mc/issues/1849
'ticket/1850.md': https://github.com/MidnightCommander/mc/issues/1850
'ticket/1851.md': https://github.com/MidnightCommander/mc/issues/1851
'ticket/1852.md': https://github.com/MidnightCommander/mc/issues/1852
'ticket/1853.md': https://github.com/MidnightCommander/mc/issues/1853
'ticket/1854.md': https://github.com/MidnightCommander/mc/issues/1854
'ticket/1855.md': https://github.com/MidnightCommander/mc/issues/1855
'ticket/1856.md': https://github.com/MidnightCommander/mc/issues/1856
'ticket/1857.md': https://github.com/MidnightCommander/mc/issues/1857
'ticket/1858.md': https://github.com/MidnightCommander/mc/issues/1858
'ticket/1859.md': https://github.com/MidnightCommander/mc/issues/1859
'ticket/1860.md': https://github.com/MidnightCommander/mc/issues/1860
'ticket/1861.md': https://github.com/MidnightCommander/mc/issues/1861
'ticket/1862.md': https://github.com/MidnightCommander/mc/issues/1862
'ticket/1863.md': https://github.com/MidnightCommander/mc/issues/1863
'ticket/1864.md': https://github.com/MidnightCommander/mc/issues/1864
'ticket/1865.md': https://github.com/MidnightCommander/mc/issues/1865
'ticket/1866.md': https://github.com/MidnightCommander/mc/issues/1866
'ticket/1867.md': https://github.com/MidnightCommander/mc/issues/1867
'ticket/1868.md': https://github.com/MidnightCommander/mc/issues/1868
'ticket/1869.md': https://github.com/MidnightCommander/mc/issues/1869
'ticket/1870.md': https://github.com/MidnightCommander/mc/issues/1870
'ticket/1871.md': https://github.com/MidnightCommander/mc/issues/1871
'ticket/1872.md': https://github.com/MidnightCommander/mc/issues/1872
'ticket/1873.md': https://github.com/MidnightCommander/mc/issues/1873
'ticket/1874.md': https://github.com/MidnightCommander/mc/issues/1874
'ticket/1875.md': https://github.com/MidnightCommander/mc/issues/1875
'ticket/1876.md': https://github.com/MidnightCommander/mc/issues/1876
'ticket/1877.md': https://github.com/MidnightCommander/mc/issues/1877