mork 0.13.2 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/README.md +6 -0
- data/lib/mork/sheet_pdf.rb +7 -3
- data/lib/mork/version.rb +1 -1
- data/mork.sublime-workspace +2904 -710
- data/spec/mork/sheet_pdf_spec.rb +8 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65e1adfa8a960b81a2f0314fdfcbf69a863e280a26153e65e0386aa813939933
|
4
|
+
data.tar.gz: 9c001f8b806206cc0acf3c715b22867f5b57be41a821c23e6647c88483c4c12d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76768c0956b92dbf1a750241a469cf01f2a8d4678d649f3c9b9377c1e94d157d288701eab8b7d026c1b960c2aa1d3d05a5e9e5cc92dbb5d7bfbf8ee1f63791cc
|
7
|
+
data.tar.gz: e2420cd1eb60404bd3a1e83a299835e87a2169d0ea731a04f4cb6380c53226ce43c8e17c1dc96f203b9e105a7958fcbe514d3996357b0a1b2c4b67005ea55dd3
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -216,6 +216,12 @@ s.save 'sheet.pdf'
|
|
216
216
|
system 'open sheet.pdf' # this works in macOS
|
217
217
|
```
|
218
218
|
|
219
|
+
In addition to `content` and `layout`, and optional boolean argument (`duplex`) instructs Mork to add a blank page after each response sheet, which allows to obtain individual response sheets when using double-sided printing:
|
220
|
+
|
221
|
+
```ruby
|
222
|
+
s = SheetPDF.new content, layout, true
|
223
|
+
```
|
224
|
+
|
219
225
|
## Analyzing response sheets with `SheetOMR`
|
220
226
|
|
221
227
|
### Preparing a `SheetOMR` object
|
data/lib/mork/sheet_pdf.rb
CHANGED
@@ -7,7 +7,7 @@ module Mork
|
|
7
7
|
# See the README file for usage
|
8
8
|
class SheetPDF < Prawn::Document
|
9
9
|
include Extensions
|
10
|
-
def initialize(content, layout=nil)
|
10
|
+
def initialize(content, layout=nil, duplex=false)
|
11
11
|
@content =
|
12
12
|
case content
|
13
13
|
when Array; content
|
@@ -24,6 +24,7 @@ module Mork
|
|
24
24
|
else raise ArgumentError, 'Invalid initialization parameter'
|
25
25
|
end
|
26
26
|
super my_page_params
|
27
|
+
@duplex = duplex
|
27
28
|
process
|
28
29
|
end
|
29
30
|
|
@@ -65,17 +66,20 @@ module Mork
|
|
65
66
|
unless equal_choice_number?
|
66
67
|
questions_and_choices ch_len[i]
|
67
68
|
end
|
69
|
+
start_new_page if @duplex
|
68
70
|
end
|
69
71
|
end
|
70
72
|
|
71
73
|
def make_repeaters
|
74
|
+
pages = @duplex ? :odd : :all
|
75
|
+
|
72
76
|
if equal_choice_number?
|
73
|
-
repeat(
|
77
|
+
repeat(pages) do
|
74
78
|
questions_and_choices ch_len.first
|
75
79
|
end
|
76
80
|
end
|
77
81
|
|
78
|
-
repeat(
|
82
|
+
repeat(pages) do
|
79
83
|
calibration_cell_repeater
|
80
84
|
registration_mark_repeater
|
81
85
|
end
|
data/lib/mork/version.rb
CHANGED
data/mork.sublime-workspace
CHANGED
@@ -3,6 +3,54 @@
|
|
3
3
|
{
|
4
4
|
"selected_items":
|
5
5
|
[
|
6
|
+
[
|
7
|
+
"raise",
|
8
|
+
"raise_error"
|
9
|
+
],
|
10
|
+
[
|
11
|
+
"Ar",
|
12
|
+
"ArgumentError"
|
13
|
+
],
|
14
|
+
[
|
15
|
+
"max_",
|
16
|
+
"max_choices_per_question"
|
17
|
+
],
|
18
|
+
[
|
19
|
+
"max",
|
20
|
+
"max_questions"
|
21
|
+
],
|
22
|
+
[
|
23
|
+
"hi",
|
24
|
+
"highlight"
|
25
|
+
],
|
26
|
+
[
|
27
|
+
"image",
|
28
|
+
"image_path"
|
29
|
+
],
|
30
|
+
[
|
31
|
+
"existin",
|
32
|
+
"non_existing_file"
|
33
|
+
],
|
34
|
+
[
|
35
|
+
"den",
|
36
|
+
"den_str"
|
37
|
+
],
|
38
|
+
[
|
39
|
+
"to",
|
40
|
+
"to_i"
|
41
|
+
],
|
42
|
+
[
|
43
|
+
"attr",
|
44
|
+
"attr_reader"
|
45
|
+
],
|
46
|
+
[
|
47
|
+
"pdf",
|
48
|
+
"pdf_den"
|
49
|
+
],
|
50
|
+
[
|
51
|
+
"In",
|
52
|
+
"Integer"
|
53
|
+
],
|
6
54
|
[
|
7
55
|
"im",
|
8
56
|
"image_path"
|
@@ -31,10 +79,6 @@
|
|
31
79
|
"val",
|
32
80
|
"validates"
|
33
81
|
],
|
34
|
-
[
|
35
|
-
"max",
|
36
|
-
"maximum\t(course.rb)"
|
37
|
-
],
|
38
82
|
[
|
39
83
|
"prese",
|
40
84
|
"presence\t(course.rb)"
|
@@ -470,100 +514,138 @@
|
|
470
514
|
[
|
471
515
|
"fie",
|
472
516
|
"field_3"
|
473
|
-
],
|
474
|
-
[
|
475
|
-
"stu",
|
476
|
-
"student_grab"
|
477
|
-
],
|
478
|
-
[
|
479
|
-
"I",
|
480
|
-
"Item2text\t(item2text_spec.rb)"
|
481
|
-
],
|
482
|
-
[
|
483
|
-
"co",
|
484
|
-
"codes"
|
485
|
-
],
|
486
|
-
[
|
487
|
-
"pos",
|
488
|
-
"position\t(grabber_spec.rb)"
|
489
|
-
],
|
490
|
-
[
|
491
|
-
"item",
|
492
|
-
"item[:discipline\t(grabber.rb)"
|
493
|
-
],
|
494
|
-
[
|
495
|
-
"qe",
|
496
|
-
"question\t(grabber_spec.rb)"
|
497
|
-
],
|
498
|
-
[
|
499
|
-
"multi_choi",
|
500
|
-
"multi_choice\t(org.rb)"
|
501
|
-
],
|
502
|
-
[
|
503
|
-
"creat",
|
504
|
-
"creator_id\t(exam.rb)"
|
505
|
-
],
|
506
|
-
[
|
507
|
-
"ex",
|
508
|
-
"expect"
|
509
|
-
],
|
510
|
-
[
|
511
|
-
"glo",
|
512
|
-
"global_discipline"
|
513
|
-
],
|
514
|
-
[
|
515
|
-
"topics",
|
516
|
-
"topics_count\t(version_spec.rb)"
|
517
517
|
]
|
518
518
|
]
|
519
519
|
},
|
520
520
|
"buffers":
|
521
521
|
[
|
522
|
+
{
|
523
|
+
"file": "spec/mork/sheet_omr_spec.rb",
|
524
|
+
"settings":
|
525
|
+
{
|
526
|
+
"buffer_size": 11627,
|
527
|
+
"encoding": "UTF-8",
|
528
|
+
"line_ending": "Unix"
|
529
|
+
}
|
530
|
+
},
|
531
|
+
{
|
532
|
+
"file": "README.md",
|
533
|
+
"settings":
|
534
|
+
{
|
535
|
+
"buffer_size": 15879,
|
536
|
+
"encoding": "UTF-8",
|
537
|
+
"line_ending": "Unix"
|
538
|
+
}
|
539
|
+
},
|
540
|
+
{
|
541
|
+
"file": "spec/mork/magicko_spec.rb",
|
542
|
+
"settings":
|
543
|
+
{
|
544
|
+
"buffer_size": 1141,
|
545
|
+
"line_ending": "Unix"
|
546
|
+
}
|
547
|
+
},
|
522
548
|
{
|
523
549
|
"file": "lib/mork/npatch.rb",
|
524
550
|
"settings":
|
525
551
|
{
|
526
552
|
"buffer_size": 742,
|
553
|
+
"encoding": "UTF-8",
|
527
554
|
"line_ending": "Unix"
|
528
555
|
}
|
529
556
|
},
|
530
557
|
{
|
531
|
-
"file": "
|
558
|
+
"file": "lib/mork/magicko.rb",
|
559
|
+
"settings":
|
560
|
+
{
|
561
|
+
"buffer_size": 5440,
|
562
|
+
"encoding": "UTF-8",
|
563
|
+
"line_ending": "Unix"
|
564
|
+
}
|
565
|
+
},
|
566
|
+
{
|
567
|
+
"contents": "Searching 50 files for \"0.12\" (regex, case sensitive)\n\n/Users/giuseppe/dev/ruby/mork/Gemfile.lock:\n 2 remote: .\n 3 specs:\n 4: mork (0.12.0)\n 5 deep_merge (~> 1.2)\n 6 mini_magick (~> 4.8)\n .\n 21 formatador (>= 0.2.4)\n 22 listen (>= 2.7, < 4.0)\n 23: lumberjack (>= 1.0.12, < 2.0)\n 24 nenv (~> 0.1)\n 25 notiffany (~> 0.0)\n\n/Users/giuseppe/dev/ruby/mork/mork-0.12.0.gem:\n <binary>\n\n/Users/giuseppe/dev/ruby/mork/lib/mork/version.rb:\n 1 module Mork\n 2: VERSION = '0.12.0'\n 3 end\n 4 \n\n4 matches across 3 files\n",
|
568
|
+
"settings":
|
569
|
+
{
|
570
|
+
"buffer_size": 610,
|
571
|
+
"line_ending": "Unix",
|
572
|
+
"name": "Find Results",
|
573
|
+
"scratch": true
|
574
|
+
}
|
575
|
+
},
|
576
|
+
{
|
577
|
+
"file": "Gemfile.lock",
|
532
578
|
"settings":
|
533
579
|
{
|
534
|
-
"buffer_size":
|
580
|
+
"buffer_size": 1901,
|
535
581
|
"line_ending": "Unix"
|
536
582
|
}
|
537
583
|
},
|
538
584
|
{
|
539
|
-
"file": "lib/mork/
|
585
|
+
"file": "lib/mork/version.rb",
|
540
586
|
"settings":
|
541
587
|
{
|
542
|
-
"buffer_size":
|
588
|
+
"buffer_size": 37,
|
589
|
+
"encoding": "UTF-8",
|
543
590
|
"line_ending": "Unix"
|
544
591
|
}
|
545
592
|
},
|
546
593
|
{
|
547
|
-
"file": "
|
594
|
+
"file": "spec/mork/npatch_spec.rb",
|
548
595
|
"settings":
|
549
596
|
{
|
550
|
-
"buffer_size":
|
597
|
+
"buffer_size": 2666,
|
551
598
|
"line_ending": "Unix"
|
552
599
|
}
|
553
600
|
},
|
554
601
|
{
|
555
|
-
"file": "
|
602
|
+
"file": ".travis.yml",
|
603
|
+
"settings":
|
604
|
+
{
|
605
|
+
"buffer_size": 30,
|
606
|
+
"encoding": "UTF-8",
|
607
|
+
"line_ending": "Unix"
|
608
|
+
}
|
609
|
+
},
|
610
|
+
{
|
611
|
+
"file": "lib/mork/sheet_pdf.rb",
|
612
|
+
"settings":
|
613
|
+
{
|
614
|
+
"buffer_size": 5946,
|
615
|
+
"line_ending": "Unix"
|
616
|
+
}
|
617
|
+
},
|
618
|
+
{
|
619
|
+
"file": ".gitignore",
|
620
|
+
"settings":
|
621
|
+
{
|
622
|
+
"buffer_size": 126,
|
623
|
+
"line_ending": "Unix"
|
624
|
+
}
|
625
|
+
},
|
626
|
+
{
|
627
|
+
"file": "mork.gemspec",
|
628
|
+
"settings":
|
629
|
+
{
|
630
|
+
"buffer_size": 1464,
|
631
|
+
"encoding": "UTF-8",
|
632
|
+
"line_ending": "Unix"
|
633
|
+
}
|
634
|
+
},
|
635
|
+
{
|
636
|
+
"file": "Rakefile",
|
556
637
|
"settings":
|
557
638
|
{
|
558
|
-
"buffer_size":
|
639
|
+
"buffer_size": 105,
|
640
|
+
"encoding": "UTF-8",
|
559
641
|
"line_ending": "Unix"
|
560
642
|
}
|
561
643
|
},
|
562
644
|
{
|
563
|
-
"file": "lib/mork/
|
645
|
+
"file": "lib/mork/sheet_omr.rb",
|
564
646
|
"settings":
|
565
647
|
{
|
566
|
-
"buffer_size":
|
648
|
+
"buffer_size": 7348,
|
567
649
|
"line_ending": "Unix"
|
568
650
|
}
|
569
651
|
},
|
@@ -571,26 +653,24 @@
|
|
571
653
|
"file": "lib/mork/mimage.rb",
|
572
654
|
"settings":
|
573
655
|
{
|
574
|
-
"buffer_size":
|
656
|
+
"buffer_size": 4951,
|
575
657
|
"encoding": "UTF-8",
|
576
658
|
"line_ending": "Unix"
|
577
659
|
}
|
578
660
|
},
|
579
661
|
{
|
580
|
-
"
|
662
|
+
"file": "lib/mork/grid_omr.rb",
|
581
663
|
"settings":
|
582
664
|
{
|
583
|
-
"buffer_size":
|
584
|
-
"line_ending": "Unix"
|
585
|
-
"name": "Find Results",
|
586
|
-
"scratch": true
|
665
|
+
"buffer_size": 2136,
|
666
|
+
"line_ending": "Unix"
|
587
667
|
}
|
588
668
|
},
|
589
669
|
{
|
590
|
-
"file": "
|
670
|
+
"file": "lib/mork/grid.rb",
|
591
671
|
"settings":
|
592
672
|
{
|
593
|
-
"buffer_size":
|
673
|
+
"buffer_size": 4516,
|
594
674
|
"line_ending": "Unix"
|
595
675
|
}
|
596
676
|
},
|
@@ -598,7 +678,8 @@
|
|
598
678
|
"file": "spec/samples/info.yml",
|
599
679
|
"settings":
|
600
680
|
{
|
601
|
-
"buffer_size":
|
681
|
+
"buffer_size": 1132,
|
682
|
+
"encoding": "UTF-8",
|
602
683
|
"line_ending": "Unix"
|
603
684
|
}
|
604
685
|
}
|
@@ -677,23 +758,36 @@
|
|
677
758
|
[
|
678
759
|
"/Users/giuseppe/dev/ruby/mork",
|
679
760
|
"/Users/giuseppe/dev/ruby/mork/lib",
|
761
|
+
"/Users/giuseppe/dev/ruby/mork/lib/mork",
|
680
762
|
"/Users/giuseppe/dev/ruby/mork/spec"
|
681
763
|
],
|
682
764
|
"file_history":
|
683
765
|
[
|
684
|
-
"/Users/giuseppe/dev/ruby/mork
|
685
|
-
"/Users/giuseppe/dev/ruby/mork/lib/mork/
|
686
|
-
"/Users/giuseppe/dev/ruby/mork/
|
687
|
-
"/Users/giuseppe/dev/ruby/mork/lib/mork/coord.rb",
|
688
|
-
"/Users/giuseppe/dev/ruby/mork/lib/mork/magicko.rb",
|
766
|
+
"/Users/giuseppe/dev/ruby/mork/.ruby-version",
|
767
|
+
"/Users/giuseppe/dev/ruby/mork/lib/mork/mimage.rb",
|
768
|
+
"/Users/giuseppe/dev/ruby/mork/spec/spec_helper.rb",
|
689
769
|
"/Users/giuseppe/dev/ruby/mork/lib/mork/grid_const.rb",
|
690
|
-
"/Users/giuseppe/dev/ruby/mork/
|
770
|
+
"/Users/giuseppe/dev/ruby/mork/spec/samples/base_layout.yml",
|
771
|
+
"/Users/giuseppe/dev/ruby/mork/lib/mork/grid_omr.rb",
|
772
|
+
"/Users/giuseppe/dev/ruby/mork/lib/mork/grid.rb",
|
773
|
+
"/Users/giuseppe/dev/ruby/mork/spec/samples/jdoe/layout.yml",
|
774
|
+
"/Users/giuseppe/dev/ruby/mork/lib/mork/magicko.rb",
|
775
|
+
"/Users/giuseppe/dev/ruby/mork/Gemfile.lock",
|
776
|
+
"/Users/giuseppe/dev/ruby/mork/spec/samples/info.yml",
|
777
|
+
"/Users/giuseppe/dev/ruby/mork/lib/mork/npatch.rb",
|
691
778
|
"/Users/giuseppe/dev/ruby/mork/lib/mork/sheet_omr.rb",
|
692
|
-
"/Users/giuseppe/dev/ruby/mork/lib/mork/version.rb",
|
693
779
|
"/Users/giuseppe/dev/ruby/mork/spec/mork/sheet_omr_spec.rb",
|
694
|
-
"/Users/giuseppe/dev/ruby/mork/lib/mork/
|
780
|
+
"/Users/giuseppe/dev/ruby/mork/lib/mork/coord.rb",
|
781
|
+
"/Users/giuseppe/dev/ruby/mork/spec/mork/mimage_spec.rb",
|
782
|
+
"/Users/giuseppe/dev/ruby/mork/mork.gemspec",
|
783
|
+
"/Users/giuseppe/dev/ruby/mork/Gemfile",
|
784
|
+
"/Users/giuseppe/dev/ruby/mork/spec/mork/grid_omr_spec.rb",
|
695
785
|
"/Users/giuseppe/dev/ruby/mork/lib/mork/grid_pdf.rb",
|
696
|
-
"/Users/giuseppe/dev/ruby/mork/lib/mork/
|
786
|
+
"/Users/giuseppe/dev/ruby/mork/lib/mork/extensions.rb",
|
787
|
+
"/Users/giuseppe/dev/ruby/mork/spec/mork/sheet_pdf_spec.rb",
|
788
|
+
"/Users/giuseppe/dev/ruby/mork/lib/mork/sheet_pdf.rb",
|
789
|
+
"/Users/giuseppe/dev/ruby/mork/Guardfile",
|
790
|
+
"/Users/giuseppe/dev/ruby/mork/lib/mork/version.rb",
|
697
791
|
"/Users/giuseppe/dev/rails/quizzi3/app/views/shared/_subnav.html.haml",
|
698
792
|
"/Users/giuseppe/dev/rails/quizzi3/app/poros/remi.rb",
|
699
793
|
"/Users/giuseppe/dev/rails/quizzi3/config/environment.rb",
|
@@ -796,23 +890,11 @@
|
|
796
890
|
"/Users/giuseppe/dev/rails/quizzi3/config/deploy.rb",
|
797
891
|
"/Users/giuseppe/dev/rails/quizzi3/config/deploy/production.rb",
|
798
892
|
"/Users/giuseppe/dev/rails/quizzi3/app/views/layouts/operationw.html.haml",
|
799
|
-
"/Users/giuseppe/dev/rails/quizzi3/app/poros/job_status.rb"
|
800
|
-
"/Users/giuseppe/dev/rails/quizzi3/Gemfile.lock",
|
801
|
-
"/Users/giuseppe/dev/rails/quizzi3/features/selections.feature",
|
802
|
-
"/Users/giuseppe/dev/rails/quizzi3/features/preset_eams.feature",
|
803
|
-
"/Users/giuseppe/dev/rails/quizzi3/features/protect_memberships.feature",
|
804
|
-
"/Users/giuseppe/dev/rails/quizzi3/app/views/students/new.html.haml",
|
805
|
-
"/Users/giuseppe/dev/rails/quizzi3/config/locales/it.yml",
|
806
|
-
"/Users/giuseppe/dev/rails/quizzi3/app/views/devise/registrations/new.html.haml",
|
807
|
-
"/Users/giuseppe/dev/rails/quizzi3/app/views/student_grabs/new.html.haml",
|
808
|
-
"/Users/giuseppe/dev/rails/quizzi3/app/views/student_grabs/_form.html.haml",
|
809
|
-
"/Users/giuseppe/dev/rails/quizzi3/app/views/layouts/help.html.haml",
|
810
|
-
"/Users/giuseppe/dev/rails/quizzi3/app/assets/javascript/application.js",
|
811
|
-
"/Users/giuseppe/dev/rails/quizzi3/app/assets/stylesheets/application.sass"
|
893
|
+
"/Users/giuseppe/dev/rails/quizzi3/app/poros/job_status.rb"
|
812
894
|
],
|
813
895
|
"find":
|
814
896
|
{
|
815
|
-
"height":
|
897
|
+
"height": 41.0
|
816
898
|
},
|
817
899
|
"find_in_files":
|
818
900
|
{
|
@@ -840,6 +922,55 @@
|
|
840
922
|
"case_sensitive": true,
|
841
923
|
"find_history":
|
842
924
|
[
|
925
|
+
"'\n",
|
926
|
+
"0.12",
|
927
|
+
"standard",
|
928
|
+
"raffa-ige",
|
929
|
+
"valid-pdf",
|
930
|
+
"raise",
|
931
|
+
"OSX",
|
932
|
+
"focus",
|
933
|
+
"=>",
|
934
|
+
"focu",
|
935
|
+
"ABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDE",
|
936
|
+
"standard_marked_letters",
|
937
|
+
"standard_mark_array",
|
938
|
+
"exists",
|
939
|
+
"mark_char_array",
|
940
|
+
"focu",
|
941
|
+
"max_choices_per_question",
|
942
|
+
"check",
|
943
|
+
"highlights ",
|
944
|
+
"it '",
|
945
|
+
"highligh",
|
946
|
+
"highlighted",
|
947
|
+
"standard_mark_array",
|
948
|
+
"write_registration",
|
949
|
+
"non_existing_file",
|
950
|
+
"registered_bytes",
|
951
|
+
"?",
|
952
|
+
"get_info_and_test_sanity",
|
953
|
+
"valid",
|
954
|
+
"depth",
|
955
|
+
"img_size",
|
956
|
+
"byebug",
|
957
|
+
"source",
|
958
|
+
"3136",
|
959
|
+
"dst.shape",
|
960
|
+
"focus",
|
961
|
+
"low_contrast",
|
962
|
+
"cropper",
|
963
|
+
"raffa-ige",
|
964
|
+
"NArray",
|
965
|
+
",",
|
966
|
+
" #",
|
967
|
+
"shape",
|
968
|
+
"pdfinfo",
|
969
|
+
",",
|
970
|
+
"a Fixnum",
|
971
|
+
"Fixnum",
|
972
|
+
"YAMLL",
|
973
|
+
"Fixnum",
|
843
974
|
"sample_img",
|
844
975
|
"x_rng",
|
845
976
|
"identify",
|
@@ -918,56 +1049,7 @@
|
|
918
1049
|
"Docs",
|
919
1050
|
"edit_profile",
|
920
1051
|
"docs_link",
|
921
|
-
"Hello, worl"
|
922
|
-
"Hello, Worl",
|
923
|
-
"Hello Worl",
|
924
|
-
"Hello Help",
|
925
|
-
"@body",
|
926
|
-
"BodyClas",
|
927
|
-
"body_classer",
|
928
|
-
"body_class",
|
929
|
-
"BodyClass",
|
930
|
-
"welcom",
|
931
|
-
"radius",
|
932
|
-
"@inclu",
|
933
|
-
"@extend",
|
934
|
-
"/$",
|
935
|
-
":(\\w+) *=> *",
|
936
|
-
"macboo",
|
937
|
-
"'Mod'",
|
938
|
-
"spacer",
|
939
|
-
".org-buttons",
|
940
|
-
"e_tag",
|
941
|
-
"etag",
|
942
|
-
"panel-headi",
|
943
|
-
"navbar-ex1-collapse",
|
944
|
-
"\\.confirm\\b",
|
945
|
-
"\\bconfirm\\b",
|
946
|
-
"confirm",
|
947
|
-
"membership",
|
948
|
-
"mytable",
|
949
|
-
"%table",
|
950
|
-
"org-btns",
|
951
|
-
"btn btn-default btn-lg",
|
952
|
-
"org-btn-wide",
|
953
|
-
"tipper",
|
954
|
-
"org-buttons",
|
955
|
-
"@mixin",
|
956
|
-
"@include",
|
957
|
-
"@mixin",
|
958
|
-
"btn-stud",
|
959
|
-
"students",
|
960
|
-
"%table",
|
961
|
-
"flash[:scoring",
|
962
|
-
"Cachea",
|
963
|
-
"root_",
|
964
|
-
"dashboard",
|
965
|
-
"tipper",
|
966
|
-
"pdf_icon",
|
967
|
-
"pdf_",
|
968
|
-
"pdf",
|
969
|
-
"LIKE",
|
970
|
-
"where!"
|
1052
|
+
"Hello, worl"
|
971
1053
|
],
|
972
1054
|
"highlight": true,
|
973
1055
|
"in_selection": false,
|
@@ -1023,114 +1105,88 @@
|
|
1023
1105
|
"groups":
|
1024
1106
|
[
|
1025
1107
|
{
|
1026
|
-
"selected":
|
1108
|
+
"selected": 7,
|
1027
1109
|
"sheets":
|
1028
1110
|
[
|
1029
1111
|
{
|
1030
1112
|
"buffer": 0,
|
1031
|
-
"file": "lib/mork/npatch.rb",
|
1032
|
-
"semi_transient": false,
|
1033
|
-
"settings":
|
1034
|
-
{
|
1035
|
-
"buffer_size": 742,
|
1036
|
-
"regions":
|
1037
|
-
{
|
1038
|
-
},
|
1039
|
-
"selection":
|
1040
|
-
[
|
1041
|
-
[
|
1042
|
-
556,
|
1043
|
-
556
|
1044
|
-
]
|
1045
|
-
],
|
1046
|
-
"settings":
|
1047
|
-
{
|
1048
|
-
"apply_syntax_touched": true,
|
1049
|
-
"color_scheme": "Packages/User/Color Highlighter/themes/ArtSchool.tmTheme",
|
1050
|
-
"syntax": "Packages/Ruby/Ruby.sublime-syntax",
|
1051
|
-
"tab_size": 2,
|
1052
|
-
"translate_tabs_to_spaces": true
|
1053
|
-
},
|
1054
|
-
"translation.x": 0.0,
|
1055
|
-
"translation.y": 0.0,
|
1056
|
-
"zoom_level": 1.0
|
1057
|
-
},
|
1058
|
-
"stack_index": 9,
|
1059
|
-
"type": "text"
|
1060
|
-
},
|
1061
|
-
{
|
1062
|
-
"buffer": 1,
|
1063
1113
|
"file": "spec/mork/sheet_omr_spec.rb",
|
1064
1114
|
"semi_transient": false,
|
1065
1115
|
"settings":
|
1066
1116
|
{
|
1067
|
-
"buffer_size":
|
1117
|
+
"buffer_size": 11627,
|
1068
1118
|
"regions":
|
1069
1119
|
{
|
1070
1120
|
},
|
1071
1121
|
"selection":
|
1072
1122
|
[
|
1073
1123
|
[
|
1074
|
-
|
1075
|
-
|
1124
|
+
9361,
|
1125
|
+
9361
|
1076
1126
|
]
|
1077
1127
|
],
|
1078
1128
|
"settings":
|
1079
1129
|
{
|
1080
1130
|
"apply_syntax_touched": true,
|
1081
1131
|
"bracket_highlighter.busy": false,
|
1082
|
-
"bracket_highlighter.
|
1132
|
+
"bracket_highlighter.clone": -1,
|
1133
|
+
"bracket_highlighter.clone_locations":
|
1083
1134
|
{
|
1084
1135
|
"close":
|
1085
1136
|
{
|
1086
|
-
"1":
|
1087
|
-
[
|
1088
|
-
715,
|
1089
|
-
716
|
1090
|
-
]
|
1091
1137
|
},
|
1092
1138
|
"icon":
|
1093
1139
|
{
|
1094
|
-
"1":
|
1095
|
-
[
|
1096
|
-
"Packages/BracketHighlighter/icons/single_quote.png",
|
1097
|
-
"brackethighlighter.default"
|
1098
|
-
]
|
1099
1140
|
},
|
1100
1141
|
"open":
|
1101
1142
|
{
|
1102
|
-
"1":
|
1103
|
-
[
|
1104
|
-
682,
|
1105
|
-
683
|
1106
|
-
]
|
1107
1143
|
},
|
1108
1144
|
"unmatched":
|
1109
1145
|
{
|
1110
1146
|
}
|
1111
1147
|
},
|
1112
|
-
"bracket_highlighter.
|
1148
|
+
"bracket_highlighter.clone_regions":
|
1113
1149
|
[
|
1150
|
+
"bh_double_quote",
|
1151
|
+
"bh_double_quote_center",
|
1152
|
+
"bh_double_quote_open",
|
1153
|
+
"bh_double_quote_close",
|
1154
|
+
"bh_double_quote_content",
|
1114
1155
|
"bh_unmatched",
|
1115
1156
|
"bh_unmatched_center",
|
1116
1157
|
"bh_unmatched_open",
|
1117
1158
|
"bh_unmatched_close",
|
1118
1159
|
"bh_unmatched_content",
|
1160
|
+
"bh_round",
|
1161
|
+
"bh_round_center",
|
1162
|
+
"bh_round_open",
|
1163
|
+
"bh_round_close",
|
1164
|
+
"bh_round_content",
|
1165
|
+
"bh_default",
|
1166
|
+
"bh_default_center",
|
1167
|
+
"bh_default_open",
|
1168
|
+
"bh_default_close",
|
1169
|
+
"bh_default_content",
|
1119
1170
|
"bh_tag",
|
1120
1171
|
"bh_tag_center",
|
1121
1172
|
"bh_tag_open",
|
1122
1173
|
"bh_tag_close",
|
1123
1174
|
"bh_tag_content",
|
1175
|
+
"bh_square",
|
1176
|
+
"bh_square_center",
|
1177
|
+
"bh_square_open",
|
1178
|
+
"bh_square_close",
|
1179
|
+
"bh_square_content",
|
1180
|
+
"bh_angle",
|
1181
|
+
"bh_angle_center",
|
1182
|
+
"bh_angle_open",
|
1183
|
+
"bh_angle_close",
|
1184
|
+
"bh_angle_content",
|
1124
1185
|
"bh_single_quote",
|
1125
1186
|
"bh_single_quote_center",
|
1126
1187
|
"bh_single_quote_open",
|
1127
1188
|
"bh_single_quote_close",
|
1128
1189
|
"bh_single_quote_content",
|
1129
|
-
"bh_default",
|
1130
|
-
"bh_default_center",
|
1131
|
-
"bh_default_open",
|
1132
|
-
"bh_default_close",
|
1133
|
-
"bh_default_content",
|
1134
1190
|
"bh_curly",
|
1135
1191
|
"bh_curly_center",
|
1136
1192
|
"bh_curly_open",
|
@@ -1141,68 +1197,120 @@
|
|
1141
1197
|
"bh_c_define_open",
|
1142
1198
|
"bh_c_define_close",
|
1143
1199
|
"bh_c_define_content",
|
1144
|
-
"
|
1145
|
-
"
|
1146
|
-
"
|
1147
|
-
"
|
1148
|
-
"
|
1200
|
+
"bh_regex",
|
1201
|
+
"bh_regex_center",
|
1202
|
+
"bh_regex_open",
|
1203
|
+
"bh_regex_close",
|
1204
|
+
"bh_regex_content"
|
1205
|
+
],
|
1206
|
+
"bracket_highlighter.locations":
|
1207
|
+
{
|
1208
|
+
"close":
|
1209
|
+
{
|
1210
|
+
},
|
1211
|
+
"icon":
|
1212
|
+
{
|
1213
|
+
},
|
1214
|
+
"open":
|
1215
|
+
{
|
1216
|
+
},
|
1217
|
+
"unmatched":
|
1218
|
+
{
|
1219
|
+
}
|
1220
|
+
},
|
1221
|
+
"bracket_highlighter.regions":
|
1222
|
+
[
|
1149
1223
|
"bh_double_quote",
|
1150
1224
|
"bh_double_quote_center",
|
1151
1225
|
"bh_double_quote_open",
|
1152
1226
|
"bh_double_quote_close",
|
1153
1227
|
"bh_double_quote_content",
|
1154
|
-
"
|
1155
|
-
"
|
1156
|
-
"
|
1157
|
-
"
|
1158
|
-
"
|
1159
|
-
"bh_regex",
|
1160
|
-
"bh_regex_center",
|
1161
|
-
"bh_regex_open",
|
1162
|
-
"bh_regex_close",
|
1163
|
-
"bh_regex_content",
|
1228
|
+
"bh_unmatched",
|
1229
|
+
"bh_unmatched_center",
|
1230
|
+
"bh_unmatched_open",
|
1231
|
+
"bh_unmatched_close",
|
1232
|
+
"bh_unmatched_content",
|
1164
1233
|
"bh_round",
|
1165
1234
|
"bh_round_center",
|
1166
1235
|
"bh_round_open",
|
1167
1236
|
"bh_round_close",
|
1168
|
-
"bh_round_content"
|
1169
|
-
|
1170
|
-
|
1171
|
-
|
1237
|
+
"bh_round_content",
|
1238
|
+
"bh_default",
|
1239
|
+
"bh_default_center",
|
1240
|
+
"bh_default_open",
|
1241
|
+
"bh_default_close",
|
1242
|
+
"bh_default_content",
|
1243
|
+
"bh_tag",
|
1244
|
+
"bh_tag_center",
|
1245
|
+
"bh_tag_open",
|
1246
|
+
"bh_tag_close",
|
1247
|
+
"bh_tag_content",
|
1248
|
+
"bh_square",
|
1249
|
+
"bh_square_center",
|
1250
|
+
"bh_square_open",
|
1251
|
+
"bh_square_close",
|
1252
|
+
"bh_square_content",
|
1253
|
+
"bh_angle",
|
1254
|
+
"bh_angle_center",
|
1255
|
+
"bh_angle_open",
|
1256
|
+
"bh_angle_close",
|
1257
|
+
"bh_angle_content",
|
1258
|
+
"bh_single_quote",
|
1259
|
+
"bh_single_quote_center",
|
1260
|
+
"bh_single_quote_open",
|
1261
|
+
"bh_single_quote_close",
|
1262
|
+
"bh_single_quote_content",
|
1263
|
+
"bh_curly",
|
1264
|
+
"bh_curly_center",
|
1265
|
+
"bh_curly_open",
|
1266
|
+
"bh_curly_close",
|
1267
|
+
"bh_curly_content",
|
1268
|
+
"bh_c_define",
|
1269
|
+
"bh_c_define_center",
|
1270
|
+
"bh_c_define_open",
|
1271
|
+
"bh_c_define_close",
|
1272
|
+
"bh_c_define_content",
|
1273
|
+
"bh_regex",
|
1274
|
+
"bh_regex_center",
|
1275
|
+
"bh_regex_open",
|
1276
|
+
"bh_regex_close",
|
1277
|
+
"bh_regex_content"
|
1278
|
+
],
|
1172
1279
|
"history_list_is_closing": true,
|
1173
1280
|
"syntax": "Packages/Better RSpec/Better RSpec.tmLanguage",
|
1174
1281
|
"tab_size": 2,
|
1175
1282
|
"translate_tabs_to_spaces": true
|
1176
1283
|
},
|
1177
1284
|
"translation.x": 0.0,
|
1178
|
-
"translation.y":
|
1285
|
+
"translation.y": 3535.0,
|
1179
1286
|
"zoom_level": 1.0
|
1180
1287
|
},
|
1181
|
-
"stack_index":
|
1288
|
+
"stack_index": 15,
|
1182
1289
|
"type": "text"
|
1183
1290
|
},
|
1184
1291
|
{
|
1185
|
-
"buffer":
|
1186
|
-
"file": "
|
1292
|
+
"buffer": 1,
|
1293
|
+
"file": "README.md",
|
1187
1294
|
"semi_transient": false,
|
1188
1295
|
"settings":
|
1189
1296
|
{
|
1190
|
-
"buffer_size":
|
1297
|
+
"buffer_size": 15879,
|
1191
1298
|
"regions":
|
1192
1299
|
{
|
1193
1300
|
},
|
1194
1301
|
"selection":
|
1195
1302
|
[
|
1196
1303
|
[
|
1197
|
-
|
1198
|
-
|
1304
|
+
6562,
|
1305
|
+
6562
|
1199
1306
|
]
|
1200
1307
|
],
|
1201
1308
|
"settings":
|
1202
1309
|
{
|
1203
1310
|
"apply_syntax_touched": true,
|
1204
1311
|
"bracket_highlighter.busy": false,
|
1205
|
-
"bracket_highlighter.
|
1312
|
+
"bracket_highlighter.clone": -1,
|
1313
|
+
"bracket_highlighter.clone_locations":
|
1206
1314
|
{
|
1207
1315
|
"close":
|
1208
1316
|
{
|
@@ -1217,28 +1325,48 @@
|
|
1217
1325
|
{
|
1218
1326
|
}
|
1219
1327
|
},
|
1220
|
-
"bracket_highlighter.
|
1328
|
+
"bracket_highlighter.clone_regions":
|
1221
1329
|
[
|
1330
|
+
"bh_double_quote",
|
1331
|
+
"bh_double_quote_center",
|
1332
|
+
"bh_double_quote_open",
|
1333
|
+
"bh_double_quote_close",
|
1334
|
+
"bh_double_quote_content",
|
1222
1335
|
"bh_unmatched",
|
1223
1336
|
"bh_unmatched_center",
|
1224
1337
|
"bh_unmatched_open",
|
1225
1338
|
"bh_unmatched_close",
|
1226
1339
|
"bh_unmatched_content",
|
1340
|
+
"bh_round",
|
1341
|
+
"bh_round_center",
|
1342
|
+
"bh_round_open",
|
1343
|
+
"bh_round_close",
|
1344
|
+
"bh_round_content",
|
1345
|
+
"bh_default",
|
1346
|
+
"bh_default_center",
|
1347
|
+
"bh_default_open",
|
1348
|
+
"bh_default_close",
|
1349
|
+
"bh_default_content",
|
1227
1350
|
"bh_tag",
|
1228
1351
|
"bh_tag_center",
|
1229
1352
|
"bh_tag_open",
|
1230
1353
|
"bh_tag_close",
|
1231
1354
|
"bh_tag_content",
|
1355
|
+
"bh_square",
|
1356
|
+
"bh_square_center",
|
1357
|
+
"bh_square_open",
|
1358
|
+
"bh_square_close",
|
1359
|
+
"bh_square_content",
|
1360
|
+
"bh_angle",
|
1361
|
+
"bh_angle_center",
|
1362
|
+
"bh_angle_open",
|
1363
|
+
"bh_angle_close",
|
1364
|
+
"bh_angle_content",
|
1232
1365
|
"bh_single_quote",
|
1233
1366
|
"bh_single_quote_center",
|
1234
1367
|
"bh_single_quote_open",
|
1235
1368
|
"bh_single_quote_close",
|
1236
1369
|
"bh_single_quote_content",
|
1237
|
-
"bh_default",
|
1238
|
-
"bh_default_center",
|
1239
|
-
"bh_default_open",
|
1240
|
-
"bh_default_close",
|
1241
|
-
"bh_default_content",
|
1242
1370
|
"bh_curly",
|
1243
1371
|
"bh_curly_center",
|
1244
1372
|
"bh_curly_open",
|
@@ -1249,66 +1377,12 @@
|
|
1249
1377
|
"bh_c_define_open",
|
1250
1378
|
"bh_c_define_close",
|
1251
1379
|
"bh_c_define_content",
|
1252
|
-
"bh_angle",
|
1253
|
-
"bh_angle_center",
|
1254
|
-
"bh_angle_open",
|
1255
|
-
"bh_angle_close",
|
1256
|
-
"bh_angle_content",
|
1257
|
-
"bh_double_quote",
|
1258
|
-
"bh_double_quote_center",
|
1259
|
-
"bh_double_quote_open",
|
1260
|
-
"bh_double_quote_close",
|
1261
|
-
"bh_double_quote_content",
|
1262
|
-
"bh_square",
|
1263
|
-
"bh_square_center",
|
1264
|
-
"bh_square_open",
|
1265
|
-
"bh_square_close",
|
1266
|
-
"bh_square_content",
|
1267
1380
|
"bh_regex",
|
1268
1381
|
"bh_regex_center",
|
1269
1382
|
"bh_regex_open",
|
1270
1383
|
"bh_regex_close",
|
1271
|
-
"bh_regex_content"
|
1272
|
-
"bh_round",
|
1273
|
-
"bh_round_center",
|
1274
|
-
"bh_round_open",
|
1275
|
-
"bh_round_close",
|
1276
|
-
"bh_round_content"
|
1384
|
+
"bh_regex_content"
|
1277
1385
|
],
|
1278
|
-
"color_scheme": "Packages/InactivePanes/Packages/User/Color Highlighter/themes/ArtSchool.tmTheme",
|
1279
|
-
"default_scheme": "Packages/User/Color Highlighter/themes/ArtSchool.tmTheme",
|
1280
|
-
"syntax": "Packages/Ruby/Ruby.sublime-syntax",
|
1281
|
-
"tab_size": 2,
|
1282
|
-
"translate_tabs_to_spaces": true
|
1283
|
-
},
|
1284
|
-
"translation.x": 0.0,
|
1285
|
-
"translation.y": 0.0,
|
1286
|
-
"zoom_level": 1.0
|
1287
|
-
},
|
1288
|
-
"stack_index": 2,
|
1289
|
-
"type": "text"
|
1290
|
-
},
|
1291
|
-
{
|
1292
|
-
"buffer": 3,
|
1293
|
-
"file": "lib/mork/grid.rb",
|
1294
|
-
"semi_transient": false,
|
1295
|
-
"settings":
|
1296
|
-
{
|
1297
|
-
"buffer_size": 4517,
|
1298
|
-
"regions":
|
1299
|
-
{
|
1300
|
-
},
|
1301
|
-
"selection":
|
1302
|
-
[
|
1303
|
-
[
|
1304
|
-
0,
|
1305
|
-
0
|
1306
|
-
]
|
1307
|
-
],
|
1308
|
-
"settings":
|
1309
|
-
{
|
1310
|
-
"apply_syntax_touched": true,
|
1311
|
-
"bracket_highlighter.busy": false,
|
1312
1386
|
"bracket_highlighter.locations":
|
1313
1387
|
{
|
1314
1388
|
"close":
|
@@ -1326,26 +1400,46 @@
|
|
1326
1400
|
},
|
1327
1401
|
"bracket_highlighter.regions":
|
1328
1402
|
[
|
1403
|
+
"bh_double_quote",
|
1404
|
+
"bh_double_quote_center",
|
1405
|
+
"bh_double_quote_open",
|
1406
|
+
"bh_double_quote_close",
|
1407
|
+
"bh_double_quote_content",
|
1329
1408
|
"bh_unmatched",
|
1330
1409
|
"bh_unmatched_center",
|
1331
1410
|
"bh_unmatched_open",
|
1332
1411
|
"bh_unmatched_close",
|
1333
1412
|
"bh_unmatched_content",
|
1413
|
+
"bh_round",
|
1414
|
+
"bh_round_center",
|
1415
|
+
"bh_round_open",
|
1416
|
+
"bh_round_close",
|
1417
|
+
"bh_round_content",
|
1418
|
+
"bh_default",
|
1419
|
+
"bh_default_center",
|
1420
|
+
"bh_default_open",
|
1421
|
+
"bh_default_close",
|
1422
|
+
"bh_default_content",
|
1334
1423
|
"bh_tag",
|
1335
1424
|
"bh_tag_center",
|
1336
1425
|
"bh_tag_open",
|
1337
1426
|
"bh_tag_close",
|
1338
1427
|
"bh_tag_content",
|
1428
|
+
"bh_square",
|
1429
|
+
"bh_square_center",
|
1430
|
+
"bh_square_open",
|
1431
|
+
"bh_square_close",
|
1432
|
+
"bh_square_content",
|
1433
|
+
"bh_angle",
|
1434
|
+
"bh_angle_center",
|
1435
|
+
"bh_angle_open",
|
1436
|
+
"bh_angle_close",
|
1437
|
+
"bh_angle_content",
|
1339
1438
|
"bh_single_quote",
|
1340
1439
|
"bh_single_quote_center",
|
1341
1440
|
"bh_single_quote_open",
|
1342
1441
|
"bh_single_quote_close",
|
1343
1442
|
"bh_single_quote_content",
|
1344
|
-
"bh_default",
|
1345
|
-
"bh_default_center",
|
1346
|
-
"bh_default_open",
|
1347
|
-
"bh_default_close",
|
1348
|
-
"bh_default_content",
|
1349
1443
|
"bh_curly",
|
1350
1444
|
"bh_curly_center",
|
1351
1445
|
"bh_curly_open",
|
@@ -1356,66 +1450,61 @@
|
|
1356
1450
|
"bh_c_define_open",
|
1357
1451
|
"bh_c_define_close",
|
1358
1452
|
"bh_c_define_content",
|
1359
|
-
"bh_angle",
|
1360
|
-
"bh_angle_center",
|
1361
|
-
"bh_angle_open",
|
1362
|
-
"bh_angle_close",
|
1363
|
-
"bh_angle_content",
|
1364
|
-
"bh_double_quote",
|
1365
|
-
"bh_double_quote_center",
|
1366
|
-
"bh_double_quote_open",
|
1367
|
-
"bh_double_quote_close",
|
1368
|
-
"bh_double_quote_content",
|
1369
|
-
"bh_square",
|
1370
|
-
"bh_square_center",
|
1371
|
-
"bh_square_open",
|
1372
|
-
"bh_square_close",
|
1373
|
-
"bh_square_content",
|
1374
1453
|
"bh_regex",
|
1375
1454
|
"bh_regex_center",
|
1376
1455
|
"bh_regex_open",
|
1377
1456
|
"bh_regex_close",
|
1378
|
-
"bh_regex_content"
|
1379
|
-
"bh_round",
|
1380
|
-
"bh_round_center",
|
1381
|
-
"bh_round_open",
|
1382
|
-
"bh_round_close",
|
1383
|
-
"bh_round_content"
|
1457
|
+
"bh_regex_content"
|
1384
1458
|
],
|
1385
|
-
"
|
1386
|
-
"default_scheme": "Packages/User/Color Highlighter/themes/ArtSchool.tmTheme",
|
1387
|
-
"syntax": "Packages/Ruby/Ruby.sublime-syntax",
|
1459
|
+
"syntax": "Packages/Markdown/Markdown.sublime-syntax",
|
1388
1460
|
"tab_size": 2,
|
1389
|
-
"translate_tabs_to_spaces": true
|
1461
|
+
"translate_tabs_to_spaces": true,
|
1462
|
+
"word_wrap": true
|
1390
1463
|
},
|
1391
1464
|
"translation.x": 0.0,
|
1392
|
-
"translation.y":
|
1465
|
+
"translation.y": 5071.0,
|
1393
1466
|
"zoom_level": 1.0
|
1394
1467
|
},
|
1395
|
-
"stack_index":
|
1468
|
+
"stack_index": 14,
|
1396
1469
|
"type": "text"
|
1397
1470
|
},
|
1398
1471
|
{
|
1399
|
-
"buffer":
|
1400
|
-
"file": "
|
1472
|
+
"buffer": 2,
|
1473
|
+
"file": "spec/mork/magicko_spec.rb",
|
1401
1474
|
"semi_transient": false,
|
1402
1475
|
"settings":
|
1403
1476
|
{
|
1404
|
-
"buffer_size":
|
1477
|
+
"buffer_size": 1141,
|
1405
1478
|
"regions":
|
1406
1479
|
{
|
1407
1480
|
},
|
1408
1481
|
"selection":
|
1409
1482
|
[
|
1410
1483
|
[
|
1411
|
-
|
1412
|
-
|
1484
|
+
272,
|
1485
|
+
272
|
1413
1486
|
]
|
1414
1487
|
],
|
1415
1488
|
"settings":
|
1416
1489
|
{
|
1417
1490
|
"apply_syntax_touched": true,
|
1418
1491
|
"bracket_highlighter.busy": false,
|
1492
|
+
"bracket_highlighter.clone": -1,
|
1493
|
+
"bracket_highlighter.clone_locations":
|
1494
|
+
{
|
1495
|
+
"close":
|
1496
|
+
{
|
1497
|
+
},
|
1498
|
+
"icon":
|
1499
|
+
{
|
1500
|
+
},
|
1501
|
+
"open":
|
1502
|
+
{
|
1503
|
+
},
|
1504
|
+
"unmatched":
|
1505
|
+
{
|
1506
|
+
}
|
1507
|
+
},
|
1419
1508
|
"bracket_highlighter.locations":
|
1420
1509
|
{
|
1421
1510
|
"close":
|
@@ -1433,26 +1522,46 @@
|
|
1433
1522
|
},
|
1434
1523
|
"bracket_highlighter.regions":
|
1435
1524
|
[
|
1525
|
+
"bh_double_quote",
|
1526
|
+
"bh_double_quote_center",
|
1527
|
+
"bh_double_quote_open",
|
1528
|
+
"bh_double_quote_close",
|
1529
|
+
"bh_double_quote_content",
|
1436
1530
|
"bh_unmatched",
|
1437
1531
|
"bh_unmatched_center",
|
1438
1532
|
"bh_unmatched_open",
|
1439
1533
|
"bh_unmatched_close",
|
1440
1534
|
"bh_unmatched_content",
|
1535
|
+
"bh_round",
|
1536
|
+
"bh_round_center",
|
1537
|
+
"bh_round_open",
|
1538
|
+
"bh_round_close",
|
1539
|
+
"bh_round_content",
|
1540
|
+
"bh_default",
|
1541
|
+
"bh_default_center",
|
1542
|
+
"bh_default_open",
|
1543
|
+
"bh_default_close",
|
1544
|
+
"bh_default_content",
|
1441
1545
|
"bh_tag",
|
1442
1546
|
"bh_tag_center",
|
1443
1547
|
"bh_tag_open",
|
1444
1548
|
"bh_tag_close",
|
1445
1549
|
"bh_tag_content",
|
1550
|
+
"bh_square",
|
1551
|
+
"bh_square_center",
|
1552
|
+
"bh_square_open",
|
1553
|
+
"bh_square_close",
|
1554
|
+
"bh_square_content",
|
1555
|
+
"bh_angle",
|
1556
|
+
"bh_angle_center",
|
1557
|
+
"bh_angle_open",
|
1558
|
+
"bh_angle_close",
|
1559
|
+
"bh_angle_content",
|
1446
1560
|
"bh_single_quote",
|
1447
1561
|
"bh_single_quote_center",
|
1448
1562
|
"bh_single_quote_open",
|
1449
1563
|
"bh_single_quote_close",
|
1450
1564
|
"bh_single_quote_content",
|
1451
|
-
"bh_default",
|
1452
|
-
"bh_default_center",
|
1453
|
-
"bh_default_open",
|
1454
|
-
"bh_default_close",
|
1455
|
-
"bh_default_content",
|
1456
1565
|
"bh_curly",
|
1457
1566
|
"bh_curly_center",
|
1458
1567
|
"bh_curly_open",
|
@@ -1463,35 +1572,13 @@
|
|
1463
1572
|
"bh_c_define_open",
|
1464
1573
|
"bh_c_define_close",
|
1465
1574
|
"bh_c_define_content",
|
1466
|
-
"bh_angle",
|
1467
|
-
"bh_angle_center",
|
1468
|
-
"bh_angle_open",
|
1469
|
-
"bh_angle_close",
|
1470
|
-
"bh_angle_content",
|
1471
|
-
"bh_double_quote",
|
1472
|
-
"bh_double_quote_center",
|
1473
|
-
"bh_double_quote_open",
|
1474
|
-
"bh_double_quote_close",
|
1475
|
-
"bh_double_quote_content",
|
1476
|
-
"bh_square",
|
1477
|
-
"bh_square_center",
|
1478
|
-
"bh_square_open",
|
1479
|
-
"bh_square_close",
|
1480
|
-
"bh_square_content",
|
1481
1575
|
"bh_regex",
|
1482
1576
|
"bh_regex_center",
|
1483
1577
|
"bh_regex_open",
|
1484
1578
|
"bh_regex_close",
|
1485
|
-
"bh_regex_content"
|
1486
|
-
"bh_round",
|
1487
|
-
"bh_round_center",
|
1488
|
-
"bh_round_open",
|
1489
|
-
"bh_round_close",
|
1490
|
-
"bh_round_content"
|
1579
|
+
"bh_regex_content"
|
1491
1580
|
],
|
1492
|
-
"
|
1493
|
-
"default_scheme": "Packages/User/Color Highlighter/themes/ArtSchool.tmTheme",
|
1494
|
-
"syntax": "Packages/Ruby/Ruby.sublime-syntax",
|
1581
|
+
"syntax": "Packages/Better RSpec/Better RSpec.tmLanguage",
|
1495
1582
|
"tab_size": 2,
|
1496
1583
|
"translate_tabs_to_spaces": true
|
1497
1584
|
},
|
@@ -1499,121 +1586,2282 @@
|
|
1499
1586
|
"translation.y": 0.0,
|
1500
1587
|
"zoom_level": 1.0
|
1501
1588
|
},
|
1502
|
-
"stack_index":
|
1589
|
+
"stack_index": 16,
|
1503
1590
|
"type": "text"
|
1504
|
-
}
|
1505
|
-
]
|
1506
|
-
},
|
1507
|
-
{
|
1508
|
-
"selected": 4,
|
1509
|
-
"sheets":
|
1510
|
-
[
|
1591
|
+
},
|
1511
1592
|
{
|
1512
|
-
"buffer":
|
1513
|
-
"file": "lib/mork/
|
1593
|
+
"buffer": 3,
|
1594
|
+
"file": "lib/mork/npatch.rb",
|
1514
1595
|
"semi_transient": false,
|
1515
1596
|
"settings":
|
1516
1597
|
{
|
1517
|
-
"buffer_size":
|
1598
|
+
"buffer_size": 742,
|
1518
1599
|
"regions":
|
1519
1600
|
{
|
1520
1601
|
},
|
1521
1602
|
"selection":
|
1522
1603
|
[
|
1523
1604
|
[
|
1524
|
-
|
1525
|
-
|
1605
|
+
341,
|
1606
|
+
341
|
1526
1607
|
]
|
1527
1608
|
],
|
1528
1609
|
"settings":
|
1529
1610
|
{
|
1530
1611
|
"apply_syntax_touched": true,
|
1531
|
-
"
|
1612
|
+
"bracket_highlighter.busy": false,
|
1613
|
+
"bracket_highlighter.clone": -1,
|
1614
|
+
"bracket_highlighter.clone_locations":
|
1615
|
+
{
|
1616
|
+
"close":
|
1617
|
+
{
|
1618
|
+
},
|
1619
|
+
"icon":
|
1620
|
+
{
|
1621
|
+
},
|
1622
|
+
"open":
|
1623
|
+
{
|
1624
|
+
},
|
1625
|
+
"unmatched":
|
1626
|
+
{
|
1627
|
+
}
|
1628
|
+
},
|
1629
|
+
"bracket_highlighter.clone_regions":
|
1630
|
+
[
|
1631
|
+
"bh_curly",
|
1632
|
+
"bh_curly_center",
|
1633
|
+
"bh_curly_open",
|
1634
|
+
"bh_curly_close",
|
1635
|
+
"bh_curly_content",
|
1636
|
+
"bh_regex",
|
1637
|
+
"bh_regex_center",
|
1638
|
+
"bh_regex_open",
|
1639
|
+
"bh_regex_close",
|
1640
|
+
"bh_regex_content",
|
1641
|
+
"bh_square",
|
1642
|
+
"bh_square_center",
|
1643
|
+
"bh_square_open",
|
1644
|
+
"bh_square_close",
|
1645
|
+
"bh_square_content",
|
1646
|
+
"bh_unmatched",
|
1647
|
+
"bh_unmatched_center",
|
1648
|
+
"bh_unmatched_open",
|
1649
|
+
"bh_unmatched_close",
|
1650
|
+
"bh_unmatched_content",
|
1651
|
+
"bh_single_quote",
|
1652
|
+
"bh_single_quote_center",
|
1653
|
+
"bh_single_quote_open",
|
1654
|
+
"bh_single_quote_close",
|
1655
|
+
"bh_single_quote_content",
|
1656
|
+
"bh_angle",
|
1657
|
+
"bh_angle_center",
|
1658
|
+
"bh_angle_open",
|
1659
|
+
"bh_angle_close",
|
1660
|
+
"bh_angle_content",
|
1661
|
+
"bh_tag",
|
1662
|
+
"bh_tag_center",
|
1663
|
+
"bh_tag_open",
|
1664
|
+
"bh_tag_close",
|
1665
|
+
"bh_tag_content",
|
1666
|
+
"bh_round",
|
1667
|
+
"bh_round_center",
|
1668
|
+
"bh_round_open",
|
1669
|
+
"bh_round_close",
|
1670
|
+
"bh_round_content",
|
1671
|
+
"bh_default",
|
1672
|
+
"bh_default_center",
|
1673
|
+
"bh_default_open",
|
1674
|
+
"bh_default_close",
|
1675
|
+
"bh_default_content",
|
1676
|
+
"bh_c_define",
|
1677
|
+
"bh_c_define_center",
|
1678
|
+
"bh_c_define_open",
|
1679
|
+
"bh_c_define_close",
|
1680
|
+
"bh_c_define_content",
|
1681
|
+
"bh_double_quote",
|
1682
|
+
"bh_double_quote_center",
|
1683
|
+
"bh_double_quote_open",
|
1684
|
+
"bh_double_quote_close",
|
1685
|
+
"bh_double_quote_content"
|
1686
|
+
],
|
1687
|
+
"bracket_highlighter.locations":
|
1688
|
+
{
|
1689
|
+
"close":
|
1690
|
+
{
|
1691
|
+
},
|
1692
|
+
"icon":
|
1693
|
+
{
|
1694
|
+
},
|
1695
|
+
"open":
|
1696
|
+
{
|
1697
|
+
},
|
1698
|
+
"unmatched":
|
1699
|
+
{
|
1700
|
+
}
|
1701
|
+
},
|
1702
|
+
"bracket_highlighter.regions":
|
1703
|
+
[
|
1704
|
+
"bh_double_quote",
|
1705
|
+
"bh_double_quote_center",
|
1706
|
+
"bh_double_quote_open",
|
1707
|
+
"bh_double_quote_close",
|
1708
|
+
"bh_double_quote_content",
|
1709
|
+
"bh_unmatched",
|
1710
|
+
"bh_unmatched_center",
|
1711
|
+
"bh_unmatched_open",
|
1712
|
+
"bh_unmatched_close",
|
1713
|
+
"bh_unmatched_content",
|
1714
|
+
"bh_round",
|
1715
|
+
"bh_round_center",
|
1716
|
+
"bh_round_open",
|
1717
|
+
"bh_round_close",
|
1718
|
+
"bh_round_content",
|
1719
|
+
"bh_default",
|
1720
|
+
"bh_default_center",
|
1721
|
+
"bh_default_open",
|
1722
|
+
"bh_default_close",
|
1723
|
+
"bh_default_content",
|
1724
|
+
"bh_tag",
|
1725
|
+
"bh_tag_center",
|
1726
|
+
"bh_tag_open",
|
1727
|
+
"bh_tag_close",
|
1728
|
+
"bh_tag_content",
|
1729
|
+
"bh_square",
|
1730
|
+
"bh_square_center",
|
1731
|
+
"bh_square_open",
|
1732
|
+
"bh_square_close",
|
1733
|
+
"bh_square_content",
|
1734
|
+
"bh_angle",
|
1735
|
+
"bh_angle_center",
|
1736
|
+
"bh_angle_open",
|
1737
|
+
"bh_angle_close",
|
1738
|
+
"bh_angle_content",
|
1739
|
+
"bh_single_quote",
|
1740
|
+
"bh_single_quote_center",
|
1741
|
+
"bh_single_quote_open",
|
1742
|
+
"bh_single_quote_close",
|
1743
|
+
"bh_single_quote_content",
|
1744
|
+
"bh_curly",
|
1745
|
+
"bh_curly_center",
|
1746
|
+
"bh_curly_open",
|
1747
|
+
"bh_curly_close",
|
1748
|
+
"bh_curly_content",
|
1749
|
+
"bh_c_define",
|
1750
|
+
"bh_c_define_center",
|
1751
|
+
"bh_c_define_open",
|
1752
|
+
"bh_c_define_close",
|
1753
|
+
"bh_c_define_content",
|
1754
|
+
"bh_regex",
|
1755
|
+
"bh_regex_center",
|
1756
|
+
"bh_regex_open",
|
1757
|
+
"bh_regex_close",
|
1758
|
+
"bh_regex_content"
|
1759
|
+
],
|
1760
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax",
|
1761
|
+
"tab_size": 2,
|
1762
|
+
"translate_tabs_to_spaces": true
|
1763
|
+
},
|
1764
|
+
"translation.x": 0.0,
|
1765
|
+
"translation.y": 0.0,
|
1766
|
+
"zoom_level": 1.0
|
1767
|
+
},
|
1768
|
+
"stack_index": 18,
|
1769
|
+
"type": "text"
|
1770
|
+
},
|
1771
|
+
{
|
1772
|
+
"buffer": 4,
|
1773
|
+
"file": "lib/mork/magicko.rb",
|
1774
|
+
"semi_transient": false,
|
1775
|
+
"settings":
|
1776
|
+
{
|
1777
|
+
"buffer_size": 5440,
|
1778
|
+
"regions":
|
1779
|
+
{
|
1780
|
+
"bookmarks":
|
1781
|
+
{
|
1782
|
+
"flags": 144,
|
1783
|
+
"icon": "bookmark",
|
1784
|
+
"regions":
|
1785
|
+
[
|
1786
|
+
],
|
1787
|
+
"scope": "bookmarks"
|
1788
|
+
}
|
1789
|
+
},
|
1790
|
+
"selection":
|
1791
|
+
[
|
1792
|
+
[
|
1793
|
+
2189,
|
1794
|
+
2189
|
1795
|
+
]
|
1796
|
+
],
|
1797
|
+
"settings":
|
1798
|
+
{
|
1799
|
+
"apply_syntax_touched": true,
|
1800
|
+
"bracket_highlighter.busy": false,
|
1801
|
+
"bracket_highlighter.clone": -1,
|
1802
|
+
"bracket_highlighter.clone_locations":
|
1803
|
+
{
|
1804
|
+
"close":
|
1805
|
+
{
|
1806
|
+
},
|
1807
|
+
"icon":
|
1808
|
+
{
|
1809
|
+
},
|
1810
|
+
"open":
|
1811
|
+
{
|
1812
|
+
},
|
1813
|
+
"unmatched":
|
1814
|
+
{
|
1815
|
+
}
|
1816
|
+
},
|
1817
|
+
"bracket_highlighter.clone_regions":
|
1818
|
+
[
|
1819
|
+
"bh_double_quote",
|
1820
|
+
"bh_double_quote_center",
|
1821
|
+
"bh_double_quote_open",
|
1822
|
+
"bh_double_quote_close",
|
1823
|
+
"bh_double_quote_content",
|
1824
|
+
"bh_unmatched",
|
1825
|
+
"bh_unmatched_center",
|
1826
|
+
"bh_unmatched_open",
|
1827
|
+
"bh_unmatched_close",
|
1828
|
+
"bh_unmatched_content",
|
1829
|
+
"bh_round",
|
1830
|
+
"bh_round_center",
|
1831
|
+
"bh_round_open",
|
1832
|
+
"bh_round_close",
|
1833
|
+
"bh_round_content",
|
1834
|
+
"bh_default",
|
1835
|
+
"bh_default_center",
|
1836
|
+
"bh_default_open",
|
1837
|
+
"bh_default_close",
|
1838
|
+
"bh_default_content",
|
1839
|
+
"bh_tag",
|
1840
|
+
"bh_tag_center",
|
1841
|
+
"bh_tag_open",
|
1842
|
+
"bh_tag_close",
|
1843
|
+
"bh_tag_content",
|
1844
|
+
"bh_square",
|
1845
|
+
"bh_square_center",
|
1846
|
+
"bh_square_open",
|
1847
|
+
"bh_square_close",
|
1848
|
+
"bh_square_content",
|
1849
|
+
"bh_angle",
|
1850
|
+
"bh_angle_center",
|
1851
|
+
"bh_angle_open",
|
1852
|
+
"bh_angle_close",
|
1853
|
+
"bh_angle_content",
|
1854
|
+
"bh_single_quote",
|
1855
|
+
"bh_single_quote_center",
|
1856
|
+
"bh_single_quote_open",
|
1857
|
+
"bh_single_quote_close",
|
1858
|
+
"bh_single_quote_content",
|
1859
|
+
"bh_curly",
|
1860
|
+
"bh_curly_center",
|
1861
|
+
"bh_curly_open",
|
1862
|
+
"bh_curly_close",
|
1863
|
+
"bh_curly_content",
|
1864
|
+
"bh_c_define",
|
1865
|
+
"bh_c_define_center",
|
1866
|
+
"bh_c_define_open",
|
1867
|
+
"bh_c_define_close",
|
1868
|
+
"bh_c_define_content",
|
1869
|
+
"bh_regex",
|
1870
|
+
"bh_regex_center",
|
1871
|
+
"bh_regex_open",
|
1872
|
+
"bh_regex_close",
|
1873
|
+
"bh_regex_content"
|
1874
|
+
],
|
1875
|
+
"bracket_highlighter.locations":
|
1876
|
+
{
|
1877
|
+
"close":
|
1878
|
+
{
|
1879
|
+
},
|
1880
|
+
"icon":
|
1881
|
+
{
|
1882
|
+
},
|
1883
|
+
"open":
|
1884
|
+
{
|
1885
|
+
},
|
1886
|
+
"unmatched":
|
1887
|
+
{
|
1888
|
+
}
|
1889
|
+
},
|
1890
|
+
"bracket_highlighter.regions":
|
1891
|
+
[
|
1892
|
+
"bh_double_quote",
|
1893
|
+
"bh_double_quote_center",
|
1894
|
+
"bh_double_quote_open",
|
1895
|
+
"bh_double_quote_close",
|
1896
|
+
"bh_double_quote_content",
|
1897
|
+
"bh_unmatched",
|
1898
|
+
"bh_unmatched_center",
|
1899
|
+
"bh_unmatched_open",
|
1900
|
+
"bh_unmatched_close",
|
1901
|
+
"bh_unmatched_content",
|
1902
|
+
"bh_round",
|
1903
|
+
"bh_round_center",
|
1904
|
+
"bh_round_open",
|
1905
|
+
"bh_round_close",
|
1906
|
+
"bh_round_content",
|
1907
|
+
"bh_default",
|
1908
|
+
"bh_default_center",
|
1909
|
+
"bh_default_open",
|
1910
|
+
"bh_default_close",
|
1911
|
+
"bh_default_content",
|
1912
|
+
"bh_tag",
|
1913
|
+
"bh_tag_center",
|
1914
|
+
"bh_tag_open",
|
1915
|
+
"bh_tag_close",
|
1916
|
+
"bh_tag_content",
|
1917
|
+
"bh_square",
|
1918
|
+
"bh_square_center",
|
1919
|
+
"bh_square_open",
|
1920
|
+
"bh_square_close",
|
1921
|
+
"bh_square_content",
|
1922
|
+
"bh_angle",
|
1923
|
+
"bh_angle_center",
|
1924
|
+
"bh_angle_open",
|
1925
|
+
"bh_angle_close",
|
1926
|
+
"bh_angle_content",
|
1927
|
+
"bh_single_quote",
|
1928
|
+
"bh_single_quote_center",
|
1929
|
+
"bh_single_quote_open",
|
1930
|
+
"bh_single_quote_close",
|
1931
|
+
"bh_single_quote_content",
|
1932
|
+
"bh_curly",
|
1933
|
+
"bh_curly_center",
|
1934
|
+
"bh_curly_open",
|
1935
|
+
"bh_curly_close",
|
1936
|
+
"bh_curly_content",
|
1937
|
+
"bh_c_define",
|
1938
|
+
"bh_c_define_center",
|
1939
|
+
"bh_c_define_open",
|
1940
|
+
"bh_c_define_close",
|
1941
|
+
"bh_c_define_content",
|
1942
|
+
"bh_regex",
|
1943
|
+
"bh_regex_center",
|
1944
|
+
"bh_regex_open",
|
1945
|
+
"bh_regex_close",
|
1946
|
+
"bh_regex_content"
|
1947
|
+
],
|
1948
|
+
"history_list_is_closing": true,
|
1949
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax",
|
1950
|
+
"tab_size": 2,
|
1951
|
+
"translate_tabs_to_spaces": true
|
1952
|
+
},
|
1953
|
+
"translation.x": 0.0,
|
1954
|
+
"translation.y": 1069.0,
|
1955
|
+
"zoom_level": 1.0
|
1956
|
+
},
|
1957
|
+
"stack_index": 7,
|
1958
|
+
"type": "text"
|
1959
|
+
},
|
1960
|
+
{
|
1961
|
+
"buffer": 5,
|
1962
|
+
"semi_transient": false,
|
1963
|
+
"settings":
|
1964
|
+
{
|
1965
|
+
"buffer_size": 610,
|
1966
|
+
"regions":
|
1967
|
+
{
|
1968
|
+
"match":
|
1969
|
+
{
|
1970
|
+
"flags": 112,
|
1971
|
+
"regions":
|
1972
|
+
[
|
1973
|
+
[
|
1974
|
+
151,
|
1975
|
+
155
|
1976
|
+
],
|
1977
|
+
[
|
1978
|
+
333,
|
1979
|
+
337
|
1980
|
+
],
|
1981
|
+
[
|
1982
|
+
557,
|
1983
|
+
561
|
1984
|
+
]
|
1985
|
+
],
|
1986
|
+
"scope": ""
|
1987
|
+
}
|
1988
|
+
},
|
1989
|
+
"selection":
|
1990
|
+
[
|
1991
|
+
[
|
1992
|
+
537,
|
1993
|
+
543
|
1994
|
+
]
|
1995
|
+
],
|
1996
|
+
"settings":
|
1997
|
+
{
|
1998
|
+
"apply_syntax_touched": true,
|
1999
|
+
"bracket_highlighter.busy": false,
|
2000
|
+
"bracket_highlighter.clone": -1,
|
2001
|
+
"bracket_highlighter.clone_locations":
|
2002
|
+
{
|
2003
|
+
"close":
|
2004
|
+
{
|
2005
|
+
},
|
2006
|
+
"icon":
|
2007
|
+
{
|
2008
|
+
},
|
2009
|
+
"open":
|
2010
|
+
{
|
2011
|
+
},
|
2012
|
+
"unmatched":
|
2013
|
+
{
|
2014
|
+
}
|
2015
|
+
},
|
2016
|
+
"bracket_highlighter.locations":
|
2017
|
+
{
|
2018
|
+
"close":
|
2019
|
+
{
|
2020
|
+
},
|
2021
|
+
"icon":
|
2022
|
+
{
|
2023
|
+
},
|
2024
|
+
"open":
|
2025
|
+
{
|
2026
|
+
},
|
2027
|
+
"unmatched":
|
2028
|
+
{
|
2029
|
+
}
|
2030
|
+
},
|
2031
|
+
"bracket_highlighter.regions":
|
2032
|
+
[
|
2033
|
+
"bh_double_quote",
|
2034
|
+
"bh_double_quote_center",
|
2035
|
+
"bh_double_quote_open",
|
2036
|
+
"bh_double_quote_close",
|
2037
|
+
"bh_double_quote_content",
|
2038
|
+
"bh_unmatched",
|
2039
|
+
"bh_unmatched_center",
|
2040
|
+
"bh_unmatched_open",
|
2041
|
+
"bh_unmatched_close",
|
2042
|
+
"bh_unmatched_content",
|
2043
|
+
"bh_round",
|
2044
|
+
"bh_round_center",
|
2045
|
+
"bh_round_open",
|
2046
|
+
"bh_round_close",
|
2047
|
+
"bh_round_content",
|
2048
|
+
"bh_default",
|
2049
|
+
"bh_default_center",
|
2050
|
+
"bh_default_open",
|
2051
|
+
"bh_default_close",
|
2052
|
+
"bh_default_content",
|
2053
|
+
"bh_tag",
|
2054
|
+
"bh_tag_center",
|
2055
|
+
"bh_tag_open",
|
2056
|
+
"bh_tag_close",
|
2057
|
+
"bh_tag_content",
|
2058
|
+
"bh_square",
|
2059
|
+
"bh_square_center",
|
2060
|
+
"bh_square_open",
|
2061
|
+
"bh_square_close",
|
2062
|
+
"bh_square_content",
|
2063
|
+
"bh_angle",
|
2064
|
+
"bh_angle_center",
|
2065
|
+
"bh_angle_open",
|
2066
|
+
"bh_angle_close",
|
2067
|
+
"bh_angle_content",
|
2068
|
+
"bh_single_quote",
|
2069
|
+
"bh_single_quote_center",
|
2070
|
+
"bh_single_quote_open",
|
2071
|
+
"bh_single_quote_close",
|
2072
|
+
"bh_single_quote_content",
|
2073
|
+
"bh_curly",
|
2074
|
+
"bh_curly_center",
|
2075
|
+
"bh_curly_open",
|
2076
|
+
"bh_curly_close",
|
2077
|
+
"bh_curly_content",
|
2078
|
+
"bh_c_define",
|
2079
|
+
"bh_c_define_center",
|
2080
|
+
"bh_c_define_open",
|
2081
|
+
"bh_c_define_close",
|
2082
|
+
"bh_c_define_content",
|
2083
|
+
"bh_regex",
|
2084
|
+
"bh_regex_center",
|
2085
|
+
"bh_regex_open",
|
2086
|
+
"bh_regex_close",
|
2087
|
+
"bh_regex_content"
|
2088
|
+
],
|
2089
|
+
"default_dir": "/Users/giuseppe/dev/ruby/mork/lib/mork",
|
2090
|
+
"detect_indentation": false,
|
2091
|
+
"line_numbers": false,
|
2092
|
+
"output_tag": 1,
|
2093
|
+
"result_base_dir": "",
|
2094
|
+
"result_file_regex": "^([^ \t].*):$",
|
2095
|
+
"result_line_regex": "^ +([0-9]+):",
|
2096
|
+
"scroll_past_end": true,
|
2097
|
+
"syntax": "Packages/Default/Find Results.hidden-tmLanguage",
|
2098
|
+
"translate_tabs_to_spaces": false
|
2099
|
+
},
|
2100
|
+
"translation.x": 0.0,
|
2101
|
+
"translation.y": 0.0,
|
2102
|
+
"zoom_level": 1.0
|
2103
|
+
},
|
2104
|
+
"stack_index": 6,
|
2105
|
+
"type": "text"
|
2106
|
+
},
|
2107
|
+
{
|
2108
|
+
"buffer": 6,
|
2109
|
+
"file": "Gemfile.lock",
|
2110
|
+
"semi_transient": false,
|
2111
|
+
"settings":
|
2112
|
+
{
|
2113
|
+
"buffer_size": 1901,
|
2114
|
+
"regions":
|
2115
|
+
{
|
2116
|
+
},
|
2117
|
+
"selection":
|
2118
|
+
[
|
2119
|
+
[
|
2120
|
+
409,
|
2121
|
+
409
|
2122
|
+
]
|
2123
|
+
],
|
2124
|
+
"settings":
|
2125
|
+
{
|
2126
|
+
"apply_syntax_touched": true,
|
2127
|
+
"bracket_highlighter.busy": false,
|
2128
|
+
"bracket_highlighter.clone": -1,
|
2129
|
+
"bracket_highlighter.clone_locations":
|
2130
|
+
{
|
2131
|
+
"close":
|
2132
|
+
{
|
2133
|
+
},
|
2134
|
+
"icon":
|
2135
|
+
{
|
2136
|
+
},
|
2137
|
+
"open":
|
2138
|
+
{
|
2139
|
+
},
|
2140
|
+
"unmatched":
|
2141
|
+
{
|
2142
|
+
}
|
2143
|
+
},
|
2144
|
+
"bracket_highlighter.clone_regions":
|
2145
|
+
[
|
2146
|
+
"bh_double_quote",
|
2147
|
+
"bh_double_quote_center",
|
2148
|
+
"bh_double_quote_open",
|
2149
|
+
"bh_double_quote_close",
|
2150
|
+
"bh_double_quote_content",
|
2151
|
+
"bh_unmatched",
|
2152
|
+
"bh_unmatched_center",
|
2153
|
+
"bh_unmatched_open",
|
2154
|
+
"bh_unmatched_close",
|
2155
|
+
"bh_unmatched_content",
|
2156
|
+
"bh_round",
|
2157
|
+
"bh_round_center",
|
2158
|
+
"bh_round_open",
|
2159
|
+
"bh_round_close",
|
2160
|
+
"bh_round_content",
|
2161
|
+
"bh_default",
|
2162
|
+
"bh_default_center",
|
2163
|
+
"bh_default_open",
|
2164
|
+
"bh_default_close",
|
2165
|
+
"bh_default_content",
|
2166
|
+
"bh_tag",
|
2167
|
+
"bh_tag_center",
|
2168
|
+
"bh_tag_open",
|
2169
|
+
"bh_tag_close",
|
2170
|
+
"bh_tag_content",
|
2171
|
+
"bh_square",
|
2172
|
+
"bh_square_center",
|
2173
|
+
"bh_square_open",
|
2174
|
+
"bh_square_close",
|
2175
|
+
"bh_square_content",
|
2176
|
+
"bh_angle",
|
2177
|
+
"bh_angle_center",
|
2178
|
+
"bh_angle_open",
|
2179
|
+
"bh_angle_close",
|
2180
|
+
"bh_angle_content",
|
2181
|
+
"bh_single_quote",
|
2182
|
+
"bh_single_quote_center",
|
2183
|
+
"bh_single_quote_open",
|
2184
|
+
"bh_single_quote_close",
|
2185
|
+
"bh_single_quote_content",
|
2186
|
+
"bh_curly",
|
2187
|
+
"bh_curly_center",
|
2188
|
+
"bh_curly_open",
|
2189
|
+
"bh_curly_close",
|
2190
|
+
"bh_curly_content",
|
2191
|
+
"bh_c_define",
|
2192
|
+
"bh_c_define_center",
|
2193
|
+
"bh_c_define_open",
|
2194
|
+
"bh_c_define_close",
|
2195
|
+
"bh_c_define_content",
|
2196
|
+
"bh_regex",
|
2197
|
+
"bh_regex_center",
|
2198
|
+
"bh_regex_open",
|
2199
|
+
"bh_regex_close",
|
2200
|
+
"bh_regex_content"
|
2201
|
+
],
|
2202
|
+
"bracket_highlighter.locations":
|
2203
|
+
{
|
2204
|
+
"close":
|
2205
|
+
{
|
2206
|
+
},
|
2207
|
+
"icon":
|
2208
|
+
{
|
2209
|
+
},
|
2210
|
+
"open":
|
2211
|
+
{
|
2212
|
+
},
|
2213
|
+
"unmatched":
|
2214
|
+
{
|
2215
|
+
}
|
2216
|
+
},
|
2217
|
+
"bracket_highlighter.regions":
|
2218
|
+
[
|
2219
|
+
"bh_double_quote",
|
2220
|
+
"bh_double_quote_center",
|
2221
|
+
"bh_double_quote_open",
|
2222
|
+
"bh_double_quote_close",
|
2223
|
+
"bh_double_quote_content",
|
2224
|
+
"bh_unmatched",
|
2225
|
+
"bh_unmatched_center",
|
2226
|
+
"bh_unmatched_open",
|
2227
|
+
"bh_unmatched_close",
|
2228
|
+
"bh_unmatched_content",
|
2229
|
+
"bh_round",
|
2230
|
+
"bh_round_center",
|
2231
|
+
"bh_round_open",
|
2232
|
+
"bh_round_close",
|
2233
|
+
"bh_round_content",
|
2234
|
+
"bh_default",
|
2235
|
+
"bh_default_center",
|
2236
|
+
"bh_default_open",
|
2237
|
+
"bh_default_close",
|
2238
|
+
"bh_default_content",
|
2239
|
+
"bh_tag",
|
2240
|
+
"bh_tag_center",
|
2241
|
+
"bh_tag_open",
|
2242
|
+
"bh_tag_close",
|
2243
|
+
"bh_tag_content",
|
2244
|
+
"bh_square",
|
2245
|
+
"bh_square_center",
|
2246
|
+
"bh_square_open",
|
2247
|
+
"bh_square_close",
|
2248
|
+
"bh_square_content",
|
2249
|
+
"bh_angle",
|
2250
|
+
"bh_angle_center",
|
2251
|
+
"bh_angle_open",
|
2252
|
+
"bh_angle_close",
|
2253
|
+
"bh_angle_content",
|
2254
|
+
"bh_single_quote",
|
2255
|
+
"bh_single_quote_center",
|
2256
|
+
"bh_single_quote_open",
|
2257
|
+
"bh_single_quote_close",
|
2258
|
+
"bh_single_quote_content",
|
2259
|
+
"bh_curly",
|
2260
|
+
"bh_curly_center",
|
2261
|
+
"bh_curly_open",
|
2262
|
+
"bh_curly_close",
|
2263
|
+
"bh_curly_content",
|
2264
|
+
"bh_c_define",
|
2265
|
+
"bh_c_define_center",
|
2266
|
+
"bh_c_define_open",
|
2267
|
+
"bh_c_define_close",
|
2268
|
+
"bh_c_define_content",
|
2269
|
+
"bh_regex",
|
2270
|
+
"bh_regex_center",
|
2271
|
+
"bh_regex_open",
|
2272
|
+
"bh_regex_close",
|
2273
|
+
"bh_regex_content"
|
2274
|
+
],
|
2275
|
+
"syntax": "Packages/Rails/Ruby on Rails.sublime-syntax",
|
2276
|
+
"tab_size": 2,
|
2277
|
+
"translate_tabs_to_spaces": true
|
2278
|
+
},
|
2279
|
+
"translation.x": 0.0,
|
2280
|
+
"translation.y": 0.0,
|
2281
|
+
"zoom_level": 1.0
|
2282
|
+
},
|
2283
|
+
"stack_index": 5,
|
2284
|
+
"type": "text"
|
2285
|
+
},
|
2286
|
+
{
|
2287
|
+
"buffer": 7,
|
2288
|
+
"file": "lib/mork/version.rb",
|
2289
|
+
"semi_transient": false,
|
2290
|
+
"settings":
|
2291
|
+
{
|
2292
|
+
"buffer_size": 37,
|
2293
|
+
"regions":
|
2294
|
+
{
|
2295
|
+
},
|
2296
|
+
"selection":
|
2297
|
+
[
|
2298
|
+
[
|
2299
|
+
37,
|
2300
|
+
37
|
2301
|
+
]
|
2302
|
+
],
|
2303
|
+
"settings":
|
2304
|
+
{
|
2305
|
+
"apply_syntax_touched": true,
|
2306
|
+
"bracket_highlighter.busy": false,
|
2307
|
+
"bracket_highlighter.clone": -1,
|
2308
|
+
"bracket_highlighter.clone_locations":
|
2309
|
+
{
|
2310
|
+
"close":
|
2311
|
+
{
|
2312
|
+
},
|
2313
|
+
"icon":
|
2314
|
+
{
|
2315
|
+
},
|
2316
|
+
"open":
|
2317
|
+
{
|
2318
|
+
},
|
2319
|
+
"unmatched":
|
2320
|
+
{
|
2321
|
+
}
|
2322
|
+
},
|
2323
|
+
"bracket_highlighter.clone_regions":
|
2324
|
+
[
|
2325
|
+
"bh_tag",
|
2326
|
+
"bh_tag_center",
|
2327
|
+
"bh_tag_open",
|
2328
|
+
"bh_tag_close",
|
2329
|
+
"bh_tag_content",
|
2330
|
+
"bh_double_quote",
|
2331
|
+
"bh_double_quote_center",
|
2332
|
+
"bh_double_quote_open",
|
2333
|
+
"bh_double_quote_close",
|
2334
|
+
"bh_double_quote_content",
|
2335
|
+
"bh_single_quote",
|
2336
|
+
"bh_single_quote_center",
|
2337
|
+
"bh_single_quote_open",
|
2338
|
+
"bh_single_quote_close",
|
2339
|
+
"bh_single_quote_content",
|
2340
|
+
"bh_curly",
|
2341
|
+
"bh_curly_center",
|
2342
|
+
"bh_curly_open",
|
2343
|
+
"bh_curly_close",
|
2344
|
+
"bh_curly_content",
|
2345
|
+
"bh_c_define",
|
2346
|
+
"bh_c_define_center",
|
2347
|
+
"bh_c_define_open",
|
2348
|
+
"bh_c_define_close",
|
2349
|
+
"bh_c_define_content",
|
2350
|
+
"bh_regex",
|
2351
|
+
"bh_regex_center",
|
2352
|
+
"bh_regex_open",
|
2353
|
+
"bh_regex_close",
|
2354
|
+
"bh_regex_content",
|
2355
|
+
"bh_angle",
|
2356
|
+
"bh_angle_center",
|
2357
|
+
"bh_angle_open",
|
2358
|
+
"bh_angle_close",
|
2359
|
+
"bh_angle_content",
|
2360
|
+
"bh_square",
|
2361
|
+
"bh_square_center",
|
2362
|
+
"bh_square_open",
|
2363
|
+
"bh_square_close",
|
2364
|
+
"bh_square_content",
|
2365
|
+
"bh_default",
|
2366
|
+
"bh_default_center",
|
2367
|
+
"bh_default_open",
|
2368
|
+
"bh_default_close",
|
2369
|
+
"bh_default_content",
|
2370
|
+
"bh_round",
|
2371
|
+
"bh_round_center",
|
2372
|
+
"bh_round_open",
|
2373
|
+
"bh_round_close",
|
2374
|
+
"bh_round_content",
|
2375
|
+
"bh_unmatched",
|
2376
|
+
"bh_unmatched_center",
|
2377
|
+
"bh_unmatched_open",
|
2378
|
+
"bh_unmatched_close",
|
2379
|
+
"bh_unmatched_content"
|
2380
|
+
],
|
2381
|
+
"bracket_highlighter.locations":
|
2382
|
+
{
|
2383
|
+
"close":
|
2384
|
+
{
|
2385
|
+
},
|
2386
|
+
"icon":
|
2387
|
+
{
|
2388
|
+
},
|
2389
|
+
"open":
|
2390
|
+
{
|
2391
|
+
},
|
2392
|
+
"unmatched":
|
2393
|
+
{
|
2394
|
+
}
|
2395
|
+
},
|
2396
|
+
"bracket_highlighter.regions":
|
2397
|
+
[
|
2398
|
+
"bh_curly",
|
2399
|
+
"bh_curly_center",
|
2400
|
+
"bh_curly_open",
|
2401
|
+
"bh_curly_close",
|
2402
|
+
"bh_curly_content",
|
2403
|
+
"bh_tag",
|
2404
|
+
"bh_tag_center",
|
2405
|
+
"bh_tag_open",
|
2406
|
+
"bh_tag_close",
|
2407
|
+
"bh_tag_content",
|
2408
|
+
"bh_default",
|
2409
|
+
"bh_default_center",
|
2410
|
+
"bh_default_open",
|
2411
|
+
"bh_default_close",
|
2412
|
+
"bh_default_content",
|
2413
|
+
"bh_double_quote",
|
2414
|
+
"bh_double_quote_center",
|
2415
|
+
"bh_double_quote_open",
|
2416
|
+
"bh_double_quote_close",
|
2417
|
+
"bh_double_quote_content",
|
2418
|
+
"bh_single_quote",
|
2419
|
+
"bh_single_quote_center",
|
2420
|
+
"bh_single_quote_open",
|
2421
|
+
"bh_single_quote_close",
|
2422
|
+
"bh_single_quote_content",
|
2423
|
+
"bh_unmatched",
|
2424
|
+
"bh_unmatched_center",
|
2425
|
+
"bh_unmatched_open",
|
2426
|
+
"bh_unmatched_close",
|
2427
|
+
"bh_unmatched_content",
|
2428
|
+
"bh_c_define",
|
2429
|
+
"bh_c_define_center",
|
2430
|
+
"bh_c_define_open",
|
2431
|
+
"bh_c_define_close",
|
2432
|
+
"bh_c_define_content",
|
2433
|
+
"bh_angle",
|
2434
|
+
"bh_angle_center",
|
2435
|
+
"bh_angle_open",
|
2436
|
+
"bh_angle_close",
|
2437
|
+
"bh_angle_content",
|
2438
|
+
"bh_round",
|
2439
|
+
"bh_round_center",
|
2440
|
+
"bh_round_open",
|
2441
|
+
"bh_round_close",
|
2442
|
+
"bh_round_content",
|
2443
|
+
"bh_square",
|
2444
|
+
"bh_square_center",
|
2445
|
+
"bh_square_open",
|
2446
|
+
"bh_square_close",
|
2447
|
+
"bh_square_content",
|
2448
|
+
"bh_regex",
|
2449
|
+
"bh_regex_center",
|
2450
|
+
"bh_regex_open",
|
2451
|
+
"bh_regex_close",
|
2452
|
+
"bh_regex_content"
|
2453
|
+
],
|
2454
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax"
|
2455
|
+
},
|
2456
|
+
"translation.x": 0.0,
|
2457
|
+
"translation.y": 0.0,
|
2458
|
+
"zoom_level": 1.0
|
2459
|
+
},
|
2460
|
+
"stack_index": 0,
|
2461
|
+
"type": "text"
|
2462
|
+
},
|
2463
|
+
{
|
2464
|
+
"buffer": 8,
|
2465
|
+
"file": "spec/mork/npatch_spec.rb",
|
2466
|
+
"semi_transient": false,
|
2467
|
+
"settings":
|
2468
|
+
{
|
2469
|
+
"buffer_size": 2666,
|
2470
|
+
"regions":
|
2471
|
+
{
|
2472
|
+
},
|
2473
|
+
"selection":
|
2474
|
+
[
|
2475
|
+
[
|
2476
|
+
310,
|
2477
|
+
310
|
2478
|
+
]
|
2479
|
+
],
|
2480
|
+
"settings":
|
2481
|
+
{
|
2482
|
+
"apply_syntax_touched": true,
|
2483
|
+
"bracket_highlighter.busy": false,
|
2484
|
+
"bracket_highlighter.clone": -1,
|
2485
|
+
"bracket_highlighter.clone_locations":
|
2486
|
+
{
|
2487
|
+
"close":
|
2488
|
+
{
|
2489
|
+
},
|
2490
|
+
"icon":
|
2491
|
+
{
|
2492
|
+
},
|
2493
|
+
"open":
|
2494
|
+
{
|
2495
|
+
},
|
2496
|
+
"unmatched":
|
2497
|
+
{
|
2498
|
+
}
|
2499
|
+
},
|
2500
|
+
"bracket_highlighter.locations":
|
2501
|
+
{
|
2502
|
+
"close":
|
2503
|
+
{
|
2504
|
+
},
|
2505
|
+
"icon":
|
2506
|
+
{
|
2507
|
+
},
|
2508
|
+
"open":
|
2509
|
+
{
|
2510
|
+
},
|
2511
|
+
"unmatched":
|
2512
|
+
{
|
2513
|
+
}
|
2514
|
+
},
|
2515
|
+
"bracket_highlighter.regions":
|
2516
|
+
[
|
2517
|
+
"bh_double_quote",
|
2518
|
+
"bh_double_quote_center",
|
2519
|
+
"bh_double_quote_open",
|
2520
|
+
"bh_double_quote_close",
|
2521
|
+
"bh_double_quote_content",
|
2522
|
+
"bh_unmatched",
|
2523
|
+
"bh_unmatched_center",
|
2524
|
+
"bh_unmatched_open",
|
2525
|
+
"bh_unmatched_close",
|
2526
|
+
"bh_unmatched_content",
|
2527
|
+
"bh_round",
|
2528
|
+
"bh_round_center",
|
2529
|
+
"bh_round_open",
|
2530
|
+
"bh_round_close",
|
2531
|
+
"bh_round_content",
|
2532
|
+
"bh_default",
|
2533
|
+
"bh_default_center",
|
2534
|
+
"bh_default_open",
|
2535
|
+
"bh_default_close",
|
2536
|
+
"bh_default_content",
|
2537
|
+
"bh_tag",
|
2538
|
+
"bh_tag_center",
|
2539
|
+
"bh_tag_open",
|
2540
|
+
"bh_tag_close",
|
2541
|
+
"bh_tag_content",
|
2542
|
+
"bh_square",
|
2543
|
+
"bh_square_center",
|
2544
|
+
"bh_square_open",
|
2545
|
+
"bh_square_close",
|
2546
|
+
"bh_square_content",
|
2547
|
+
"bh_angle",
|
2548
|
+
"bh_angle_center",
|
2549
|
+
"bh_angle_open",
|
2550
|
+
"bh_angle_close",
|
2551
|
+
"bh_angle_content",
|
2552
|
+
"bh_single_quote",
|
2553
|
+
"bh_single_quote_center",
|
2554
|
+
"bh_single_quote_open",
|
2555
|
+
"bh_single_quote_close",
|
2556
|
+
"bh_single_quote_content",
|
2557
|
+
"bh_curly",
|
2558
|
+
"bh_curly_center",
|
2559
|
+
"bh_curly_open",
|
2560
|
+
"bh_curly_close",
|
2561
|
+
"bh_curly_content",
|
2562
|
+
"bh_c_define",
|
2563
|
+
"bh_c_define_center",
|
2564
|
+
"bh_c_define_open",
|
2565
|
+
"bh_c_define_close",
|
2566
|
+
"bh_c_define_content",
|
2567
|
+
"bh_regex",
|
2568
|
+
"bh_regex_center",
|
2569
|
+
"bh_regex_open",
|
2570
|
+
"bh_regex_close",
|
2571
|
+
"bh_regex_content"
|
2572
|
+
],
|
2573
|
+
"syntax": "Packages/Better RSpec/Better RSpec.tmLanguage",
|
2574
|
+
"tab_size": 2,
|
2575
|
+
"translate_tabs_to_spaces": true
|
2576
|
+
},
|
2577
|
+
"translation.x": 0.0,
|
2578
|
+
"translation.y": 0.0,
|
2579
|
+
"zoom_level": 1.0
|
2580
|
+
},
|
2581
|
+
"stack_index": 3,
|
2582
|
+
"type": "text"
|
2583
|
+
},
|
2584
|
+
{
|
2585
|
+
"buffer": 9,
|
2586
|
+
"file": ".travis.yml",
|
2587
|
+
"semi_transient": false,
|
2588
|
+
"settings":
|
2589
|
+
{
|
2590
|
+
"buffer_size": 30,
|
2591
|
+
"regions":
|
2592
|
+
{
|
2593
|
+
},
|
2594
|
+
"selection":
|
2595
|
+
[
|
2596
|
+
[
|
2597
|
+
30,
|
2598
|
+
30
|
2599
|
+
]
|
2600
|
+
],
|
2601
|
+
"settings":
|
2602
|
+
{
|
2603
|
+
"apply_syntax_touched": true,
|
2604
|
+
"bracket_highlighter.busy": false,
|
2605
|
+
"bracket_highlighter.clone": -1,
|
2606
|
+
"bracket_highlighter.clone_locations":
|
2607
|
+
{
|
2608
|
+
"close":
|
2609
|
+
{
|
2610
|
+
},
|
2611
|
+
"icon":
|
2612
|
+
{
|
2613
|
+
},
|
2614
|
+
"open":
|
2615
|
+
{
|
2616
|
+
},
|
2617
|
+
"unmatched":
|
2618
|
+
{
|
2619
|
+
}
|
2620
|
+
},
|
2621
|
+
"bracket_highlighter.locations":
|
2622
|
+
{
|
2623
|
+
"close":
|
2624
|
+
{
|
2625
|
+
},
|
2626
|
+
"icon":
|
2627
|
+
{
|
2628
|
+
},
|
2629
|
+
"open":
|
2630
|
+
{
|
2631
|
+
},
|
2632
|
+
"unmatched":
|
2633
|
+
{
|
2634
|
+
}
|
2635
|
+
},
|
2636
|
+
"bracket_highlighter.regions":
|
2637
|
+
[
|
2638
|
+
"bh_single_quote",
|
2639
|
+
"bh_single_quote_center",
|
2640
|
+
"bh_single_quote_open",
|
2641
|
+
"bh_single_quote_close",
|
2642
|
+
"bh_single_quote_content",
|
2643
|
+
"bh_curly",
|
2644
|
+
"bh_curly_center",
|
2645
|
+
"bh_curly_open",
|
2646
|
+
"bh_curly_close",
|
2647
|
+
"bh_curly_content",
|
2648
|
+
"bh_c_define",
|
2649
|
+
"bh_c_define_center",
|
2650
|
+
"bh_c_define_open",
|
2651
|
+
"bh_c_define_close",
|
2652
|
+
"bh_c_define_content",
|
2653
|
+
"bh_angle",
|
2654
|
+
"bh_angle_center",
|
2655
|
+
"bh_angle_open",
|
2656
|
+
"bh_angle_close",
|
2657
|
+
"bh_angle_content",
|
2658
|
+
"bh_tag",
|
2659
|
+
"bh_tag_center",
|
2660
|
+
"bh_tag_open",
|
2661
|
+
"bh_tag_close",
|
2662
|
+
"bh_tag_content",
|
2663
|
+
"bh_double_quote",
|
2664
|
+
"bh_double_quote_center",
|
2665
|
+
"bh_double_quote_open",
|
2666
|
+
"bh_double_quote_close",
|
2667
|
+
"bh_double_quote_content",
|
2668
|
+
"bh_unmatched",
|
2669
|
+
"bh_unmatched_center",
|
2670
|
+
"bh_unmatched_open",
|
2671
|
+
"bh_unmatched_close",
|
2672
|
+
"bh_unmatched_content",
|
2673
|
+
"bh_round",
|
2674
|
+
"bh_round_center",
|
2675
|
+
"bh_round_open",
|
2676
|
+
"bh_round_close",
|
2677
|
+
"bh_round_content",
|
2678
|
+
"bh_default",
|
2679
|
+
"bh_default_center",
|
2680
|
+
"bh_default_open",
|
2681
|
+
"bh_default_close",
|
2682
|
+
"bh_default_content",
|
2683
|
+
"bh_regex",
|
2684
|
+
"bh_regex_center",
|
2685
|
+
"bh_regex_open",
|
2686
|
+
"bh_regex_close",
|
2687
|
+
"bh_regex_content",
|
2688
|
+
"bh_square",
|
2689
|
+
"bh_square_center",
|
2690
|
+
"bh_square_open",
|
2691
|
+
"bh_square_close",
|
2692
|
+
"bh_square_content"
|
2693
|
+
],
|
2694
|
+
"syntax": "Packages/YAML/YAML.sublime-syntax"
|
2695
|
+
},
|
2696
|
+
"translation.x": 0.0,
|
2697
|
+
"translation.y": 0.0,
|
2698
|
+
"zoom_level": 1.0
|
2699
|
+
},
|
2700
|
+
"stack_index": 2,
|
2701
|
+
"type": "text"
|
2702
|
+
},
|
2703
|
+
{
|
2704
|
+
"buffer": 10,
|
2705
|
+
"file": "lib/mork/sheet_pdf.rb",
|
2706
|
+
"semi_transient": false,
|
2707
|
+
"settings":
|
2708
|
+
{
|
2709
|
+
"buffer_size": 5946,
|
2710
|
+
"regions":
|
2711
|
+
{
|
2712
|
+
},
|
2713
|
+
"selection":
|
2714
|
+
[
|
2715
|
+
[
|
2716
|
+
374,
|
2717
|
+
361
|
2718
|
+
]
|
2719
|
+
],
|
2720
|
+
"settings":
|
2721
|
+
{
|
2722
|
+
"apply_syntax_touched": true,
|
2723
|
+
"bracket_highlighter.busy": false,
|
2724
|
+
"bracket_highlighter.clone": -1,
|
2725
|
+
"bracket_highlighter.clone_locations":
|
2726
|
+
{
|
2727
|
+
"close":
|
2728
|
+
{
|
2729
|
+
},
|
2730
|
+
"icon":
|
2731
|
+
{
|
2732
|
+
},
|
2733
|
+
"open":
|
2734
|
+
{
|
2735
|
+
},
|
2736
|
+
"unmatched":
|
2737
|
+
{
|
2738
|
+
}
|
2739
|
+
},
|
2740
|
+
"bracket_highlighter.clone_regions":
|
2741
|
+
[
|
2742
|
+
"bh_double_quote",
|
2743
|
+
"bh_double_quote_center",
|
2744
|
+
"bh_double_quote_open",
|
2745
|
+
"bh_double_quote_close",
|
2746
|
+
"bh_double_quote_content",
|
2747
|
+
"bh_unmatched",
|
2748
|
+
"bh_unmatched_center",
|
2749
|
+
"bh_unmatched_open",
|
2750
|
+
"bh_unmatched_close",
|
2751
|
+
"bh_unmatched_content",
|
2752
|
+
"bh_round",
|
2753
|
+
"bh_round_center",
|
2754
|
+
"bh_round_open",
|
2755
|
+
"bh_round_close",
|
2756
|
+
"bh_round_content",
|
2757
|
+
"bh_default",
|
2758
|
+
"bh_default_center",
|
2759
|
+
"bh_default_open",
|
2760
|
+
"bh_default_close",
|
2761
|
+
"bh_default_content",
|
2762
|
+
"bh_tag",
|
2763
|
+
"bh_tag_center",
|
2764
|
+
"bh_tag_open",
|
2765
|
+
"bh_tag_close",
|
2766
|
+
"bh_tag_content",
|
2767
|
+
"bh_square",
|
2768
|
+
"bh_square_center",
|
2769
|
+
"bh_square_open",
|
2770
|
+
"bh_square_close",
|
2771
|
+
"bh_square_content",
|
2772
|
+
"bh_angle",
|
2773
|
+
"bh_angle_center",
|
2774
|
+
"bh_angle_open",
|
2775
|
+
"bh_angle_close",
|
2776
|
+
"bh_angle_content",
|
2777
|
+
"bh_single_quote",
|
2778
|
+
"bh_single_quote_center",
|
2779
|
+
"bh_single_quote_open",
|
2780
|
+
"bh_single_quote_close",
|
2781
|
+
"bh_single_quote_content",
|
2782
|
+
"bh_curly",
|
2783
|
+
"bh_curly_center",
|
2784
|
+
"bh_curly_open",
|
2785
|
+
"bh_curly_close",
|
2786
|
+
"bh_curly_content",
|
2787
|
+
"bh_c_define",
|
2788
|
+
"bh_c_define_center",
|
2789
|
+
"bh_c_define_open",
|
2790
|
+
"bh_c_define_close",
|
2791
|
+
"bh_c_define_content",
|
2792
|
+
"bh_regex",
|
2793
|
+
"bh_regex_center",
|
2794
|
+
"bh_regex_open",
|
2795
|
+
"bh_regex_close",
|
2796
|
+
"bh_regex_content"
|
2797
|
+
],
|
2798
|
+
"bracket_highlighter.locations":
|
2799
|
+
{
|
2800
|
+
"close":
|
2801
|
+
{
|
2802
|
+
},
|
2803
|
+
"icon":
|
2804
|
+
{
|
2805
|
+
},
|
2806
|
+
"open":
|
2807
|
+
{
|
2808
|
+
},
|
2809
|
+
"unmatched":
|
2810
|
+
{
|
2811
|
+
}
|
2812
|
+
},
|
2813
|
+
"bracket_highlighter.regions":
|
2814
|
+
[
|
2815
|
+
"bh_double_quote",
|
2816
|
+
"bh_double_quote_center",
|
2817
|
+
"bh_double_quote_open",
|
2818
|
+
"bh_double_quote_close",
|
2819
|
+
"bh_double_quote_content",
|
2820
|
+
"bh_unmatched",
|
2821
|
+
"bh_unmatched_center",
|
2822
|
+
"bh_unmatched_open",
|
2823
|
+
"bh_unmatched_close",
|
2824
|
+
"bh_unmatched_content",
|
2825
|
+
"bh_round",
|
2826
|
+
"bh_round_center",
|
2827
|
+
"bh_round_open",
|
2828
|
+
"bh_round_close",
|
2829
|
+
"bh_round_content",
|
2830
|
+
"bh_default",
|
2831
|
+
"bh_default_center",
|
2832
|
+
"bh_default_open",
|
2833
|
+
"bh_default_close",
|
2834
|
+
"bh_default_content",
|
2835
|
+
"bh_tag",
|
2836
|
+
"bh_tag_center",
|
2837
|
+
"bh_tag_open",
|
2838
|
+
"bh_tag_close",
|
2839
|
+
"bh_tag_content",
|
2840
|
+
"bh_square",
|
2841
|
+
"bh_square_center",
|
2842
|
+
"bh_square_open",
|
2843
|
+
"bh_square_close",
|
2844
|
+
"bh_square_content",
|
2845
|
+
"bh_angle",
|
2846
|
+
"bh_angle_center",
|
2847
|
+
"bh_angle_open",
|
2848
|
+
"bh_angle_close",
|
2849
|
+
"bh_angle_content",
|
2850
|
+
"bh_single_quote",
|
2851
|
+
"bh_single_quote_center",
|
2852
|
+
"bh_single_quote_open",
|
2853
|
+
"bh_single_quote_close",
|
2854
|
+
"bh_single_quote_content",
|
2855
|
+
"bh_curly",
|
2856
|
+
"bh_curly_center",
|
2857
|
+
"bh_curly_open",
|
2858
|
+
"bh_curly_close",
|
2859
|
+
"bh_curly_content",
|
2860
|
+
"bh_c_define",
|
2861
|
+
"bh_c_define_center",
|
2862
|
+
"bh_c_define_open",
|
2863
|
+
"bh_c_define_close",
|
2864
|
+
"bh_c_define_content",
|
2865
|
+
"bh_regex",
|
2866
|
+
"bh_regex_center",
|
2867
|
+
"bh_regex_open",
|
2868
|
+
"bh_regex_close",
|
2869
|
+
"bh_regex_content"
|
2870
|
+
],
|
2871
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax",
|
2872
|
+
"tab_size": 2,
|
2873
|
+
"translate_tabs_to_spaces": true
|
2874
|
+
},
|
2875
|
+
"translation.x": 0.0,
|
2876
|
+
"translation.y": 0.0,
|
2877
|
+
"zoom_level": 1.0
|
2878
|
+
},
|
2879
|
+
"stack_index": 13,
|
2880
|
+
"type": "text"
|
2881
|
+
},
|
2882
|
+
{
|
2883
|
+
"buffer": 11,
|
2884
|
+
"file": ".gitignore",
|
2885
|
+
"semi_transient": false,
|
2886
|
+
"settings":
|
2887
|
+
{
|
2888
|
+
"buffer_size": 126,
|
2889
|
+
"regions":
|
2890
|
+
{
|
2891
|
+
},
|
2892
|
+
"selection":
|
2893
|
+
[
|
2894
|
+
[
|
2895
|
+
126,
|
2896
|
+
126
|
2897
|
+
]
|
2898
|
+
],
|
2899
|
+
"settings":
|
2900
|
+
{
|
2901
|
+
"apply_syntax_touched": true,
|
2902
|
+
"bracket_highlighter.busy": false,
|
2903
|
+
"bracket_highlighter.clone": 85,
|
2904
|
+
"bracket_highlighter.clone_locations":
|
2905
|
+
{
|
2906
|
+
"close":
|
2907
|
+
{
|
2908
|
+
},
|
2909
|
+
"icon":
|
2910
|
+
{
|
2911
|
+
},
|
2912
|
+
"open":
|
2913
|
+
{
|
2914
|
+
},
|
2915
|
+
"unmatched":
|
2916
|
+
{
|
2917
|
+
}
|
2918
|
+
},
|
2919
|
+
"bracket_highlighter.clone_regions":
|
2920
|
+
[
|
2921
|
+
"bh_double_quote",
|
2922
|
+
"bh_double_quote_center",
|
2923
|
+
"bh_double_quote_open",
|
2924
|
+
"bh_double_quote_close",
|
2925
|
+
"bh_double_quote_content",
|
2926
|
+
"bh_unmatched",
|
2927
|
+
"bh_unmatched_center",
|
2928
|
+
"bh_unmatched_open",
|
2929
|
+
"bh_unmatched_close",
|
2930
|
+
"bh_unmatched_content",
|
2931
|
+
"bh_round",
|
2932
|
+
"bh_round_center",
|
2933
|
+
"bh_round_open",
|
2934
|
+
"bh_round_close",
|
2935
|
+
"bh_round_content",
|
2936
|
+
"bh_default",
|
2937
|
+
"bh_default_center",
|
2938
|
+
"bh_default_open",
|
2939
|
+
"bh_default_close",
|
2940
|
+
"bh_default_content",
|
2941
|
+
"bh_tag",
|
2942
|
+
"bh_tag_center",
|
2943
|
+
"bh_tag_open",
|
2944
|
+
"bh_tag_close",
|
2945
|
+
"bh_tag_content",
|
2946
|
+
"bh_square",
|
2947
|
+
"bh_square_center",
|
2948
|
+
"bh_square_open",
|
2949
|
+
"bh_square_close",
|
2950
|
+
"bh_square_content",
|
2951
|
+
"bh_angle",
|
2952
|
+
"bh_angle_center",
|
2953
|
+
"bh_angle_open",
|
2954
|
+
"bh_angle_close",
|
2955
|
+
"bh_angle_content",
|
2956
|
+
"bh_single_quote",
|
2957
|
+
"bh_single_quote_center",
|
2958
|
+
"bh_single_quote_open",
|
2959
|
+
"bh_single_quote_close",
|
2960
|
+
"bh_single_quote_content",
|
2961
|
+
"bh_curly",
|
2962
|
+
"bh_curly_center",
|
2963
|
+
"bh_curly_open",
|
2964
|
+
"bh_curly_close",
|
2965
|
+
"bh_curly_content",
|
2966
|
+
"bh_c_define",
|
2967
|
+
"bh_c_define_center",
|
2968
|
+
"bh_c_define_open",
|
2969
|
+
"bh_c_define_close",
|
2970
|
+
"bh_c_define_content",
|
2971
|
+
"bh_regex",
|
2972
|
+
"bh_regex_center",
|
2973
|
+
"bh_regex_open",
|
2974
|
+
"bh_regex_close",
|
2975
|
+
"bh_regex_content"
|
2976
|
+
],
|
2977
|
+
"bracket_highlighter.locations":
|
2978
|
+
{
|
2979
|
+
"close":
|
2980
|
+
{
|
2981
|
+
},
|
2982
|
+
"icon":
|
2983
|
+
{
|
2984
|
+
},
|
2985
|
+
"open":
|
2986
|
+
{
|
2987
|
+
},
|
2988
|
+
"unmatched":
|
2989
|
+
{
|
2990
|
+
}
|
2991
|
+
},
|
2992
|
+
"bracket_highlighter.regions":
|
2993
|
+
[
|
2994
|
+
"bh_double_quote",
|
2995
|
+
"bh_double_quote_center",
|
2996
|
+
"bh_double_quote_open",
|
2997
|
+
"bh_double_quote_close",
|
2998
|
+
"bh_double_quote_content",
|
2999
|
+
"bh_unmatched",
|
3000
|
+
"bh_unmatched_center",
|
3001
|
+
"bh_unmatched_open",
|
3002
|
+
"bh_unmatched_close",
|
3003
|
+
"bh_unmatched_content",
|
3004
|
+
"bh_round",
|
3005
|
+
"bh_round_center",
|
3006
|
+
"bh_round_open",
|
3007
|
+
"bh_round_close",
|
3008
|
+
"bh_round_content",
|
3009
|
+
"bh_default",
|
3010
|
+
"bh_default_center",
|
3011
|
+
"bh_default_open",
|
3012
|
+
"bh_default_close",
|
3013
|
+
"bh_default_content",
|
3014
|
+
"bh_tag",
|
3015
|
+
"bh_tag_center",
|
3016
|
+
"bh_tag_open",
|
3017
|
+
"bh_tag_close",
|
3018
|
+
"bh_tag_content",
|
3019
|
+
"bh_square",
|
3020
|
+
"bh_square_center",
|
3021
|
+
"bh_square_open",
|
3022
|
+
"bh_square_close",
|
3023
|
+
"bh_square_content",
|
3024
|
+
"bh_angle",
|
3025
|
+
"bh_angle_center",
|
3026
|
+
"bh_angle_open",
|
3027
|
+
"bh_angle_close",
|
3028
|
+
"bh_angle_content",
|
3029
|
+
"bh_single_quote",
|
3030
|
+
"bh_single_quote_center",
|
3031
|
+
"bh_single_quote_open",
|
3032
|
+
"bh_single_quote_close",
|
3033
|
+
"bh_single_quote_content",
|
3034
|
+
"bh_curly",
|
3035
|
+
"bh_curly_center",
|
3036
|
+
"bh_curly_open",
|
3037
|
+
"bh_curly_close",
|
3038
|
+
"bh_curly_content",
|
3039
|
+
"bh_c_define",
|
3040
|
+
"bh_c_define_center",
|
3041
|
+
"bh_c_define_open",
|
3042
|
+
"bh_c_define_close",
|
3043
|
+
"bh_c_define_content",
|
3044
|
+
"bh_regex",
|
3045
|
+
"bh_regex_center",
|
3046
|
+
"bh_regex_open",
|
3047
|
+
"bh_regex_close",
|
3048
|
+
"bh_regex_content"
|
3049
|
+
],
|
3050
|
+
"syntax": "Packages/Text/Plain text.tmLanguage"
|
3051
|
+
},
|
3052
|
+
"translation.x": 0.0,
|
3053
|
+
"translation.y": 0.0,
|
3054
|
+
"zoom_level": 1.0
|
3055
|
+
},
|
3056
|
+
"stack_index": 11,
|
3057
|
+
"type": "text"
|
3058
|
+
},
|
3059
|
+
{
|
3060
|
+
"buffer": 12,
|
3061
|
+
"file": "mork.gemspec",
|
3062
|
+
"semi_transient": false,
|
3063
|
+
"settings":
|
3064
|
+
{
|
3065
|
+
"buffer_size": 1464,
|
3066
|
+
"regions":
|
3067
|
+
{
|
3068
|
+
},
|
3069
|
+
"selection":
|
3070
|
+
[
|
3071
|
+
[
|
3072
|
+
1463,
|
3073
|
+
1463
|
3074
|
+
]
|
3075
|
+
],
|
3076
|
+
"settings":
|
3077
|
+
{
|
3078
|
+
"apply_syntax_touched": true,
|
3079
|
+
"bracket_highlighter.busy": false,
|
3080
|
+
"bracket_highlighter.clone": -1,
|
3081
|
+
"bracket_highlighter.clone_locations":
|
3082
|
+
{
|
3083
|
+
"close":
|
3084
|
+
{
|
3085
|
+
},
|
3086
|
+
"icon":
|
3087
|
+
{
|
3088
|
+
},
|
3089
|
+
"open":
|
3090
|
+
{
|
3091
|
+
},
|
3092
|
+
"unmatched":
|
3093
|
+
{
|
3094
|
+
}
|
3095
|
+
},
|
3096
|
+
"bracket_highlighter.locations":
|
3097
|
+
{
|
3098
|
+
"close":
|
3099
|
+
{
|
3100
|
+
},
|
3101
|
+
"icon":
|
3102
|
+
{
|
3103
|
+
},
|
3104
|
+
"open":
|
3105
|
+
{
|
3106
|
+
},
|
3107
|
+
"unmatched":
|
3108
|
+
{
|
3109
|
+
}
|
3110
|
+
},
|
3111
|
+
"bracket_highlighter.regions":
|
3112
|
+
[
|
3113
|
+
"bh_single_quote",
|
3114
|
+
"bh_single_quote_center",
|
3115
|
+
"bh_single_quote_open",
|
3116
|
+
"bh_single_quote_close",
|
3117
|
+
"bh_single_quote_content",
|
3118
|
+
"bh_curly",
|
3119
|
+
"bh_curly_center",
|
3120
|
+
"bh_curly_open",
|
3121
|
+
"bh_curly_close",
|
3122
|
+
"bh_curly_content",
|
3123
|
+
"bh_c_define",
|
3124
|
+
"bh_c_define_center",
|
3125
|
+
"bh_c_define_open",
|
3126
|
+
"bh_c_define_close",
|
3127
|
+
"bh_c_define_content",
|
3128
|
+
"bh_angle",
|
3129
|
+
"bh_angle_center",
|
3130
|
+
"bh_angle_open",
|
3131
|
+
"bh_angle_close",
|
3132
|
+
"bh_angle_content",
|
3133
|
+
"bh_tag",
|
3134
|
+
"bh_tag_center",
|
3135
|
+
"bh_tag_open",
|
3136
|
+
"bh_tag_close",
|
3137
|
+
"bh_tag_content",
|
3138
|
+
"bh_double_quote",
|
3139
|
+
"bh_double_quote_center",
|
3140
|
+
"bh_double_quote_open",
|
3141
|
+
"bh_double_quote_close",
|
3142
|
+
"bh_double_quote_content",
|
3143
|
+
"bh_unmatched",
|
3144
|
+
"bh_unmatched_center",
|
3145
|
+
"bh_unmatched_open",
|
3146
|
+
"bh_unmatched_close",
|
3147
|
+
"bh_unmatched_content",
|
3148
|
+
"bh_round",
|
3149
|
+
"bh_round_center",
|
3150
|
+
"bh_round_open",
|
3151
|
+
"bh_round_close",
|
3152
|
+
"bh_round_content",
|
3153
|
+
"bh_default",
|
3154
|
+
"bh_default_center",
|
3155
|
+
"bh_default_open",
|
3156
|
+
"bh_default_close",
|
3157
|
+
"bh_default_content",
|
3158
|
+
"bh_regex",
|
3159
|
+
"bh_regex_center",
|
3160
|
+
"bh_regex_open",
|
3161
|
+
"bh_regex_close",
|
3162
|
+
"bh_regex_content",
|
3163
|
+
"bh_square",
|
3164
|
+
"bh_square_center",
|
3165
|
+
"bh_square_open",
|
3166
|
+
"bh_square_close",
|
3167
|
+
"bh_square_content"
|
3168
|
+
],
|
3169
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax",
|
3170
|
+
"tab_size": 2,
|
3171
|
+
"translate_tabs_to_spaces": true
|
3172
|
+
},
|
3173
|
+
"translation.x": 0.0,
|
3174
|
+
"translation.y": 0.0,
|
3175
|
+
"zoom_level": 1.0
|
3176
|
+
},
|
3177
|
+
"stack_index": 1,
|
3178
|
+
"type": "text"
|
3179
|
+
},
|
3180
|
+
{
|
3181
|
+
"buffer": 13,
|
3182
|
+
"file": "Rakefile",
|
3183
|
+
"semi_transient": false,
|
3184
|
+
"settings":
|
3185
|
+
{
|
3186
|
+
"buffer_size": 105,
|
3187
|
+
"regions":
|
3188
|
+
{
|
3189
|
+
},
|
3190
|
+
"selection":
|
3191
|
+
[
|
3192
|
+
[
|
3193
|
+
105,
|
3194
|
+
105
|
3195
|
+
]
|
3196
|
+
],
|
3197
|
+
"settings":
|
3198
|
+
{
|
3199
|
+
"apply_syntax_touched": true,
|
3200
|
+
"bracket_highlighter.busy": false,
|
3201
|
+
"bracket_highlighter.clone": -1,
|
3202
|
+
"bracket_highlighter.clone_locations":
|
3203
|
+
{
|
3204
|
+
"close":
|
3205
|
+
{
|
3206
|
+
},
|
3207
|
+
"icon":
|
3208
|
+
{
|
3209
|
+
},
|
3210
|
+
"open":
|
3211
|
+
{
|
3212
|
+
},
|
3213
|
+
"unmatched":
|
3214
|
+
{
|
3215
|
+
}
|
3216
|
+
},
|
3217
|
+
"bracket_highlighter.locations":
|
3218
|
+
{
|
3219
|
+
"close":
|
3220
|
+
{
|
3221
|
+
},
|
3222
|
+
"icon":
|
3223
|
+
{
|
3224
|
+
},
|
3225
|
+
"open":
|
3226
|
+
{
|
3227
|
+
},
|
3228
|
+
"unmatched":
|
3229
|
+
{
|
3230
|
+
}
|
3231
|
+
},
|
3232
|
+
"bracket_highlighter.regions":
|
3233
|
+
[
|
3234
|
+
"bh_double_quote",
|
3235
|
+
"bh_double_quote_center",
|
3236
|
+
"bh_double_quote_open",
|
3237
|
+
"bh_double_quote_close",
|
3238
|
+
"bh_double_quote_content",
|
3239
|
+
"bh_unmatched",
|
3240
|
+
"bh_unmatched_center",
|
3241
|
+
"bh_unmatched_open",
|
3242
|
+
"bh_unmatched_close",
|
3243
|
+
"bh_unmatched_content",
|
3244
|
+
"bh_round",
|
3245
|
+
"bh_round_center",
|
3246
|
+
"bh_round_open",
|
3247
|
+
"bh_round_close",
|
3248
|
+
"bh_round_content",
|
3249
|
+
"bh_default",
|
3250
|
+
"bh_default_center",
|
3251
|
+
"bh_default_open",
|
3252
|
+
"bh_default_close",
|
3253
|
+
"bh_default_content",
|
3254
|
+
"bh_tag",
|
3255
|
+
"bh_tag_center",
|
3256
|
+
"bh_tag_open",
|
3257
|
+
"bh_tag_close",
|
3258
|
+
"bh_tag_content",
|
3259
|
+
"bh_square",
|
3260
|
+
"bh_square_center",
|
3261
|
+
"bh_square_open",
|
3262
|
+
"bh_square_close",
|
3263
|
+
"bh_square_content",
|
3264
|
+
"bh_angle",
|
3265
|
+
"bh_angle_center",
|
3266
|
+
"bh_angle_open",
|
3267
|
+
"bh_angle_close",
|
3268
|
+
"bh_angle_content",
|
3269
|
+
"bh_single_quote",
|
3270
|
+
"bh_single_quote_center",
|
3271
|
+
"bh_single_quote_open",
|
3272
|
+
"bh_single_quote_close",
|
3273
|
+
"bh_single_quote_content",
|
3274
|
+
"bh_curly",
|
3275
|
+
"bh_curly_center",
|
3276
|
+
"bh_curly_open",
|
3277
|
+
"bh_curly_close",
|
3278
|
+
"bh_curly_content",
|
3279
|
+
"bh_c_define",
|
3280
|
+
"bh_c_define_center",
|
3281
|
+
"bh_c_define_open",
|
3282
|
+
"bh_c_define_close",
|
3283
|
+
"bh_c_define_content",
|
3284
|
+
"bh_regex",
|
3285
|
+
"bh_regex_center",
|
3286
|
+
"bh_regex_open",
|
3287
|
+
"bh_regex_close",
|
3288
|
+
"bh_regex_content"
|
3289
|
+
],
|
3290
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax"
|
3291
|
+
},
|
3292
|
+
"translation.x": 0.0,
|
3293
|
+
"translation.y": 0.0,
|
3294
|
+
"zoom_level": 1.0
|
3295
|
+
},
|
3296
|
+
"stack_index": 4,
|
3297
|
+
"type": "text"
|
3298
|
+
}
|
3299
|
+
]
|
3300
|
+
},
|
3301
|
+
{
|
3302
|
+
"selected": 1,
|
3303
|
+
"sheets":
|
3304
|
+
[
|
3305
|
+
{
|
3306
|
+
"buffer": 14,
|
3307
|
+
"file": "lib/mork/sheet_omr.rb",
|
3308
|
+
"semi_transient": false,
|
3309
|
+
"settings":
|
3310
|
+
{
|
3311
|
+
"buffer_size": 7348,
|
3312
|
+
"regions":
|
3313
|
+
{
|
3314
|
+
},
|
3315
|
+
"selection":
|
3316
|
+
[
|
3317
|
+
[
|
3318
|
+
5518,
|
3319
|
+
5518
|
3320
|
+
]
|
3321
|
+
],
|
3322
|
+
"settings":
|
3323
|
+
{
|
3324
|
+
"apply_syntax_touched": true,
|
3325
|
+
"bracket_highlighter.busy": false,
|
3326
|
+
"bracket_highlighter.clone": -1,
|
3327
|
+
"bracket_highlighter.clone_locations":
|
3328
|
+
{
|
3329
|
+
"close":
|
3330
|
+
{
|
3331
|
+
},
|
3332
|
+
"icon":
|
3333
|
+
{
|
3334
|
+
},
|
3335
|
+
"open":
|
3336
|
+
{
|
3337
|
+
},
|
3338
|
+
"unmatched":
|
3339
|
+
{
|
3340
|
+
}
|
3341
|
+
},
|
3342
|
+
"bracket_highlighter.clone_regions":
|
3343
|
+
[
|
3344
|
+
"bh_double_quote",
|
3345
|
+
"bh_double_quote_center",
|
3346
|
+
"bh_double_quote_open",
|
3347
|
+
"bh_double_quote_close",
|
3348
|
+
"bh_double_quote_content",
|
3349
|
+
"bh_unmatched",
|
3350
|
+
"bh_unmatched_center",
|
3351
|
+
"bh_unmatched_open",
|
3352
|
+
"bh_unmatched_close",
|
3353
|
+
"bh_unmatched_content",
|
3354
|
+
"bh_round",
|
3355
|
+
"bh_round_center",
|
3356
|
+
"bh_round_open",
|
3357
|
+
"bh_round_close",
|
3358
|
+
"bh_round_content",
|
3359
|
+
"bh_default",
|
3360
|
+
"bh_default_center",
|
3361
|
+
"bh_default_open",
|
3362
|
+
"bh_default_close",
|
3363
|
+
"bh_default_content",
|
3364
|
+
"bh_tag",
|
3365
|
+
"bh_tag_center",
|
3366
|
+
"bh_tag_open",
|
3367
|
+
"bh_tag_close",
|
3368
|
+
"bh_tag_content",
|
3369
|
+
"bh_square",
|
3370
|
+
"bh_square_center",
|
3371
|
+
"bh_square_open",
|
3372
|
+
"bh_square_close",
|
3373
|
+
"bh_square_content",
|
3374
|
+
"bh_angle",
|
3375
|
+
"bh_angle_center",
|
3376
|
+
"bh_angle_open",
|
3377
|
+
"bh_angle_close",
|
3378
|
+
"bh_angle_content",
|
3379
|
+
"bh_single_quote",
|
3380
|
+
"bh_single_quote_center",
|
3381
|
+
"bh_single_quote_open",
|
3382
|
+
"bh_single_quote_close",
|
3383
|
+
"bh_single_quote_content",
|
3384
|
+
"bh_curly",
|
3385
|
+
"bh_curly_center",
|
3386
|
+
"bh_curly_open",
|
3387
|
+
"bh_curly_close",
|
3388
|
+
"bh_curly_content",
|
3389
|
+
"bh_c_define",
|
3390
|
+
"bh_c_define_center",
|
3391
|
+
"bh_c_define_open",
|
3392
|
+
"bh_c_define_close",
|
3393
|
+
"bh_c_define_content",
|
3394
|
+
"bh_regex",
|
3395
|
+
"bh_regex_center",
|
3396
|
+
"bh_regex_open",
|
3397
|
+
"bh_regex_close",
|
3398
|
+
"bh_regex_content"
|
3399
|
+
],
|
3400
|
+
"bracket_highlighter.locations":
|
3401
|
+
{
|
3402
|
+
"close":
|
3403
|
+
{
|
3404
|
+
},
|
3405
|
+
"icon":
|
3406
|
+
{
|
3407
|
+
},
|
3408
|
+
"open":
|
3409
|
+
{
|
3410
|
+
},
|
3411
|
+
"unmatched":
|
3412
|
+
{
|
3413
|
+
}
|
3414
|
+
},
|
3415
|
+
"bracket_highlighter.regions":
|
3416
|
+
[
|
3417
|
+
"bh_double_quote",
|
3418
|
+
"bh_double_quote_center",
|
3419
|
+
"bh_double_quote_open",
|
3420
|
+
"bh_double_quote_close",
|
3421
|
+
"bh_double_quote_content",
|
3422
|
+
"bh_unmatched",
|
3423
|
+
"bh_unmatched_center",
|
3424
|
+
"bh_unmatched_open",
|
3425
|
+
"bh_unmatched_close",
|
3426
|
+
"bh_unmatched_content",
|
3427
|
+
"bh_round",
|
3428
|
+
"bh_round_center",
|
3429
|
+
"bh_round_open",
|
3430
|
+
"bh_round_close",
|
3431
|
+
"bh_round_content",
|
3432
|
+
"bh_default",
|
3433
|
+
"bh_default_center",
|
3434
|
+
"bh_default_open",
|
3435
|
+
"bh_default_close",
|
3436
|
+
"bh_default_content",
|
3437
|
+
"bh_tag",
|
3438
|
+
"bh_tag_center",
|
3439
|
+
"bh_tag_open",
|
3440
|
+
"bh_tag_close",
|
3441
|
+
"bh_tag_content",
|
3442
|
+
"bh_square",
|
3443
|
+
"bh_square_center",
|
3444
|
+
"bh_square_open",
|
3445
|
+
"bh_square_close",
|
3446
|
+
"bh_square_content",
|
3447
|
+
"bh_angle",
|
3448
|
+
"bh_angle_center",
|
3449
|
+
"bh_angle_open",
|
3450
|
+
"bh_angle_close",
|
3451
|
+
"bh_angle_content",
|
3452
|
+
"bh_single_quote",
|
3453
|
+
"bh_single_quote_center",
|
3454
|
+
"bh_single_quote_open",
|
3455
|
+
"bh_single_quote_close",
|
3456
|
+
"bh_single_quote_content",
|
3457
|
+
"bh_curly",
|
3458
|
+
"bh_curly_center",
|
3459
|
+
"bh_curly_open",
|
3460
|
+
"bh_curly_close",
|
3461
|
+
"bh_curly_content",
|
3462
|
+
"bh_c_define",
|
3463
|
+
"bh_c_define_center",
|
3464
|
+
"bh_c_define_open",
|
3465
|
+
"bh_c_define_close",
|
3466
|
+
"bh_c_define_content",
|
3467
|
+
"bh_regex",
|
3468
|
+
"bh_regex_center",
|
3469
|
+
"bh_regex_open",
|
3470
|
+
"bh_regex_close",
|
3471
|
+
"bh_regex_content"
|
3472
|
+
],
|
3473
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax",
|
3474
|
+
"tab_size": 2,
|
3475
|
+
"translate_tabs_to_spaces": true
|
3476
|
+
},
|
3477
|
+
"translation.x": 0.0,
|
3478
|
+
"translation.y": 2482.0,
|
3479
|
+
"zoom_level": 1.0
|
3480
|
+
},
|
3481
|
+
"stack_index": 9,
|
3482
|
+
"type": "text"
|
3483
|
+
},
|
3484
|
+
{
|
3485
|
+
"buffer": 15,
|
3486
|
+
"file": "lib/mork/mimage.rb",
|
3487
|
+
"semi_transient": false,
|
3488
|
+
"settings":
|
3489
|
+
{
|
3490
|
+
"buffer_size": 4951,
|
3491
|
+
"regions":
|
3492
|
+
{
|
3493
|
+
},
|
3494
|
+
"selection":
|
3495
|
+
[
|
3496
|
+
[
|
3497
|
+
1643,
|
3498
|
+
1643
|
3499
|
+
]
|
3500
|
+
],
|
3501
|
+
"settings":
|
3502
|
+
{
|
3503
|
+
"apply_syntax_touched": true,
|
3504
|
+
"bracket_highlighter.busy": false,
|
3505
|
+
"bracket_highlighter.clone": -1,
|
3506
|
+
"bracket_highlighter.clone_locations":
|
3507
|
+
{
|
3508
|
+
"close":
|
3509
|
+
{
|
3510
|
+
},
|
3511
|
+
"icon":
|
3512
|
+
{
|
3513
|
+
},
|
3514
|
+
"open":
|
3515
|
+
{
|
3516
|
+
},
|
3517
|
+
"unmatched":
|
3518
|
+
{
|
3519
|
+
}
|
3520
|
+
},
|
3521
|
+
"bracket_highlighter.clone_regions":
|
3522
|
+
[
|
3523
|
+
"bh_double_quote",
|
3524
|
+
"bh_double_quote_center",
|
3525
|
+
"bh_double_quote_open",
|
3526
|
+
"bh_double_quote_close",
|
3527
|
+
"bh_double_quote_content",
|
3528
|
+
"bh_unmatched",
|
3529
|
+
"bh_unmatched_center",
|
3530
|
+
"bh_unmatched_open",
|
3531
|
+
"bh_unmatched_close",
|
3532
|
+
"bh_unmatched_content",
|
3533
|
+
"bh_round",
|
3534
|
+
"bh_round_center",
|
3535
|
+
"bh_round_open",
|
3536
|
+
"bh_round_close",
|
3537
|
+
"bh_round_content",
|
3538
|
+
"bh_default",
|
3539
|
+
"bh_default_center",
|
3540
|
+
"bh_default_open",
|
3541
|
+
"bh_default_close",
|
3542
|
+
"bh_default_content",
|
3543
|
+
"bh_tag",
|
3544
|
+
"bh_tag_center",
|
3545
|
+
"bh_tag_open",
|
3546
|
+
"bh_tag_close",
|
3547
|
+
"bh_tag_content",
|
3548
|
+
"bh_square",
|
3549
|
+
"bh_square_center",
|
3550
|
+
"bh_square_open",
|
3551
|
+
"bh_square_close",
|
3552
|
+
"bh_square_content",
|
3553
|
+
"bh_angle",
|
3554
|
+
"bh_angle_center",
|
3555
|
+
"bh_angle_open",
|
3556
|
+
"bh_angle_close",
|
3557
|
+
"bh_angle_content",
|
3558
|
+
"bh_single_quote",
|
3559
|
+
"bh_single_quote_center",
|
3560
|
+
"bh_single_quote_open",
|
3561
|
+
"bh_single_quote_close",
|
3562
|
+
"bh_single_quote_content",
|
3563
|
+
"bh_curly",
|
3564
|
+
"bh_curly_center",
|
3565
|
+
"bh_curly_open",
|
3566
|
+
"bh_curly_close",
|
3567
|
+
"bh_curly_content",
|
3568
|
+
"bh_c_define",
|
3569
|
+
"bh_c_define_center",
|
3570
|
+
"bh_c_define_open",
|
3571
|
+
"bh_c_define_close",
|
3572
|
+
"bh_c_define_content",
|
3573
|
+
"bh_regex",
|
3574
|
+
"bh_regex_center",
|
3575
|
+
"bh_regex_open",
|
3576
|
+
"bh_regex_close",
|
3577
|
+
"bh_regex_content"
|
3578
|
+
],
|
3579
|
+
"bracket_highlighter.locations":
|
3580
|
+
{
|
3581
|
+
"close":
|
3582
|
+
{
|
3583
|
+
},
|
3584
|
+
"icon":
|
3585
|
+
{
|
3586
|
+
},
|
3587
|
+
"open":
|
3588
|
+
{
|
3589
|
+
},
|
3590
|
+
"unmatched":
|
3591
|
+
{
|
3592
|
+
}
|
3593
|
+
},
|
3594
|
+
"bracket_highlighter.regions":
|
3595
|
+
[
|
3596
|
+
"bh_double_quote",
|
3597
|
+
"bh_double_quote_center",
|
3598
|
+
"bh_double_quote_open",
|
3599
|
+
"bh_double_quote_close",
|
3600
|
+
"bh_double_quote_content",
|
3601
|
+
"bh_unmatched",
|
3602
|
+
"bh_unmatched_center",
|
3603
|
+
"bh_unmatched_open",
|
3604
|
+
"bh_unmatched_close",
|
3605
|
+
"bh_unmatched_content",
|
3606
|
+
"bh_round",
|
3607
|
+
"bh_round_center",
|
3608
|
+
"bh_round_open",
|
3609
|
+
"bh_round_close",
|
3610
|
+
"bh_round_content",
|
3611
|
+
"bh_default",
|
3612
|
+
"bh_default_center",
|
3613
|
+
"bh_default_open",
|
3614
|
+
"bh_default_close",
|
3615
|
+
"bh_default_content",
|
3616
|
+
"bh_tag",
|
3617
|
+
"bh_tag_center",
|
3618
|
+
"bh_tag_open",
|
3619
|
+
"bh_tag_close",
|
3620
|
+
"bh_tag_content",
|
3621
|
+
"bh_square",
|
3622
|
+
"bh_square_center",
|
3623
|
+
"bh_square_open",
|
3624
|
+
"bh_square_close",
|
3625
|
+
"bh_square_content",
|
3626
|
+
"bh_angle",
|
3627
|
+
"bh_angle_center",
|
3628
|
+
"bh_angle_open",
|
3629
|
+
"bh_angle_close",
|
3630
|
+
"bh_angle_content",
|
3631
|
+
"bh_single_quote",
|
3632
|
+
"bh_single_quote_center",
|
3633
|
+
"bh_single_quote_open",
|
3634
|
+
"bh_single_quote_close",
|
3635
|
+
"bh_single_quote_content",
|
3636
|
+
"bh_curly",
|
3637
|
+
"bh_curly_center",
|
3638
|
+
"bh_curly_open",
|
3639
|
+
"bh_curly_close",
|
3640
|
+
"bh_curly_content",
|
3641
|
+
"bh_c_define",
|
3642
|
+
"bh_c_define_center",
|
3643
|
+
"bh_c_define_open",
|
3644
|
+
"bh_c_define_close",
|
3645
|
+
"bh_c_define_content",
|
3646
|
+
"bh_regex",
|
3647
|
+
"bh_regex_center",
|
3648
|
+
"bh_regex_open",
|
3649
|
+
"bh_regex_close",
|
3650
|
+
"bh_regex_content"
|
3651
|
+
],
|
3652
|
+
"color_scheme": "Packages/InactivePanes/Packages/Colorsublime - Themes/ArtSchool.tmTheme",
|
1532
3653
|
"history_list_is_closing": true,
|
1533
3654
|
"syntax": "Packages/Ruby/Ruby.sublime-syntax",
|
1534
3655
|
"tab_size": 2,
|
1535
3656
|
"translate_tabs_to_spaces": true
|
1536
3657
|
},
|
1537
3658
|
"translation.x": 0.0,
|
3659
|
+
"translation.y": 1081.0,
|
3660
|
+
"zoom_level": 1.0
|
3661
|
+
},
|
3662
|
+
"stack_index": 8,
|
3663
|
+
"type": "text"
|
3664
|
+
},
|
3665
|
+
{
|
3666
|
+
"buffer": 16,
|
3667
|
+
"file": "lib/mork/grid_omr.rb",
|
3668
|
+
"semi_transient": false,
|
3669
|
+
"settings":
|
3670
|
+
{
|
3671
|
+
"buffer_size": 2136,
|
3672
|
+
"regions":
|
3673
|
+
{
|
3674
|
+
},
|
3675
|
+
"selection":
|
3676
|
+
[
|
3677
|
+
[
|
3678
|
+
88,
|
3679
|
+
88
|
3680
|
+
]
|
3681
|
+
],
|
3682
|
+
"settings":
|
3683
|
+
{
|
3684
|
+
"apply_syntax_touched": true,
|
3685
|
+
"bracket_highlighter.busy": false,
|
3686
|
+
"bracket_highlighter.clone": -1,
|
3687
|
+
"bracket_highlighter.clone_locations":
|
3688
|
+
{
|
3689
|
+
"close":
|
3690
|
+
{
|
3691
|
+
},
|
3692
|
+
"icon":
|
3693
|
+
{
|
3694
|
+
},
|
3695
|
+
"open":
|
3696
|
+
{
|
3697
|
+
},
|
3698
|
+
"unmatched":
|
3699
|
+
{
|
3700
|
+
}
|
3701
|
+
},
|
3702
|
+
"bracket_highlighter.locations":
|
3703
|
+
{
|
3704
|
+
"close":
|
3705
|
+
{
|
3706
|
+
},
|
3707
|
+
"icon":
|
3708
|
+
{
|
3709
|
+
},
|
3710
|
+
"open":
|
3711
|
+
{
|
3712
|
+
},
|
3713
|
+
"unmatched":
|
3714
|
+
{
|
3715
|
+
}
|
3716
|
+
},
|
3717
|
+
"bracket_highlighter.regions":
|
3718
|
+
[
|
3719
|
+
"bh_double_quote",
|
3720
|
+
"bh_double_quote_center",
|
3721
|
+
"bh_double_quote_open",
|
3722
|
+
"bh_double_quote_close",
|
3723
|
+
"bh_double_quote_content",
|
3724
|
+
"bh_unmatched",
|
3725
|
+
"bh_unmatched_center",
|
3726
|
+
"bh_unmatched_open",
|
3727
|
+
"bh_unmatched_close",
|
3728
|
+
"bh_unmatched_content",
|
3729
|
+
"bh_round",
|
3730
|
+
"bh_round_center",
|
3731
|
+
"bh_round_open",
|
3732
|
+
"bh_round_close",
|
3733
|
+
"bh_round_content",
|
3734
|
+
"bh_default",
|
3735
|
+
"bh_default_center",
|
3736
|
+
"bh_default_open",
|
3737
|
+
"bh_default_close",
|
3738
|
+
"bh_default_content",
|
3739
|
+
"bh_tag",
|
3740
|
+
"bh_tag_center",
|
3741
|
+
"bh_tag_open",
|
3742
|
+
"bh_tag_close",
|
3743
|
+
"bh_tag_content",
|
3744
|
+
"bh_square",
|
3745
|
+
"bh_square_center",
|
3746
|
+
"bh_square_open",
|
3747
|
+
"bh_square_close",
|
3748
|
+
"bh_square_content",
|
3749
|
+
"bh_angle",
|
3750
|
+
"bh_angle_center",
|
3751
|
+
"bh_angle_open",
|
3752
|
+
"bh_angle_close",
|
3753
|
+
"bh_angle_content",
|
3754
|
+
"bh_single_quote",
|
3755
|
+
"bh_single_quote_center",
|
3756
|
+
"bh_single_quote_open",
|
3757
|
+
"bh_single_quote_close",
|
3758
|
+
"bh_single_quote_content",
|
3759
|
+
"bh_curly",
|
3760
|
+
"bh_curly_center",
|
3761
|
+
"bh_curly_open",
|
3762
|
+
"bh_curly_close",
|
3763
|
+
"bh_curly_content",
|
3764
|
+
"bh_c_define",
|
3765
|
+
"bh_c_define_center",
|
3766
|
+
"bh_c_define_open",
|
3767
|
+
"bh_c_define_close",
|
3768
|
+
"bh_c_define_content",
|
3769
|
+
"bh_regex",
|
3770
|
+
"bh_regex_center",
|
3771
|
+
"bh_regex_open",
|
3772
|
+
"bh_regex_close",
|
3773
|
+
"bh_regex_content"
|
3774
|
+
],
|
3775
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax",
|
3776
|
+
"tab_size": 2,
|
3777
|
+
"translate_tabs_to_spaces": true
|
3778
|
+
},
|
3779
|
+
"translation.x": 0.0,
|
1538
3780
|
"translation.y": 0.0,
|
1539
3781
|
"zoom_level": 1.0
|
1540
3782
|
},
|
1541
|
-
"stack_index":
|
3783
|
+
"stack_index": 17,
|
1542
3784
|
"type": "text"
|
1543
3785
|
},
|
1544
3786
|
{
|
1545
|
-
"buffer":
|
1546
|
-
"file": "lib/mork/
|
3787
|
+
"buffer": 17,
|
3788
|
+
"file": "lib/mork/grid.rb",
|
1547
3789
|
"semi_transient": false,
|
1548
3790
|
"settings":
|
1549
3791
|
{
|
1550
|
-
"buffer_size":
|
3792
|
+
"buffer_size": 4516,
|
1551
3793
|
"regions":
|
1552
3794
|
{
|
1553
3795
|
},
|
1554
3796
|
"selection":
|
1555
3797
|
[
|
1556
3798
|
[
|
1557
|
-
|
1558
|
-
|
3799
|
+
789,
|
3800
|
+
789
|
1559
3801
|
]
|
1560
3802
|
],
|
1561
3803
|
"settings":
|
1562
3804
|
{
|
1563
3805
|
"apply_syntax_touched": true,
|
1564
3806
|
"bracket_highlighter.busy": false,
|
1565
|
-
"bracket_highlighter.
|
3807
|
+
"bracket_highlighter.clone": -1,
|
3808
|
+
"bracket_highlighter.clone_locations":
|
1566
3809
|
{
|
1567
3810
|
"close":
|
1568
3811
|
{
|
1569
|
-
"1":
|
1570
|
-
[
|
1571
|
-
832,
|
1572
|
-
833
|
1573
|
-
]
|
1574
3812
|
},
|
1575
3813
|
"icon":
|
1576
3814
|
{
|
1577
|
-
"1":
|
1578
|
-
[
|
1579
|
-
"Packages/BracketHighlighter/icons/round_bracket.png",
|
1580
|
-
"brackethighlighter.default"
|
1581
|
-
]
|
1582
3815
|
},
|
1583
3816
|
"open":
|
1584
3817
|
{
|
1585
|
-
"1":
|
1586
|
-
[
|
1587
|
-
826,
|
1588
|
-
827
|
1589
|
-
]
|
1590
3818
|
},
|
1591
3819
|
"unmatched":
|
1592
3820
|
{
|
1593
3821
|
}
|
1594
3822
|
},
|
1595
|
-
"bracket_highlighter.
|
3823
|
+
"bracket_highlighter.clone_regions":
|
1596
3824
|
[
|
3825
|
+
"bh_double_quote",
|
3826
|
+
"bh_double_quote_center",
|
3827
|
+
"bh_double_quote_open",
|
3828
|
+
"bh_double_quote_close",
|
3829
|
+
"bh_double_quote_content",
|
1597
3830
|
"bh_unmatched",
|
1598
3831
|
"bh_unmatched_center",
|
1599
3832
|
"bh_unmatched_open",
|
1600
3833
|
"bh_unmatched_close",
|
1601
3834
|
"bh_unmatched_content",
|
3835
|
+
"bh_round",
|
3836
|
+
"bh_round_center",
|
3837
|
+
"bh_round_open",
|
3838
|
+
"bh_round_close",
|
3839
|
+
"bh_round_content",
|
3840
|
+
"bh_default",
|
3841
|
+
"bh_default_center",
|
3842
|
+
"bh_default_open",
|
3843
|
+
"bh_default_close",
|
3844
|
+
"bh_default_content",
|
1602
3845
|
"bh_tag",
|
1603
3846
|
"bh_tag_center",
|
1604
3847
|
"bh_tag_open",
|
1605
3848
|
"bh_tag_close",
|
1606
3849
|
"bh_tag_content",
|
3850
|
+
"bh_square",
|
3851
|
+
"bh_square_center",
|
3852
|
+
"bh_square_open",
|
3853
|
+
"bh_square_close",
|
3854
|
+
"bh_square_content",
|
3855
|
+
"bh_angle",
|
3856
|
+
"bh_angle_center",
|
3857
|
+
"bh_angle_open",
|
3858
|
+
"bh_angle_close",
|
3859
|
+
"bh_angle_content",
|
1607
3860
|
"bh_single_quote",
|
1608
3861
|
"bh_single_quote_center",
|
1609
3862
|
"bh_single_quote_open",
|
1610
3863
|
"bh_single_quote_close",
|
1611
3864
|
"bh_single_quote_content",
|
1612
|
-
"bh_default",
|
1613
|
-
"bh_default_center",
|
1614
|
-
"bh_default_open",
|
1615
|
-
"bh_default_close",
|
1616
|
-
"bh_default_content",
|
1617
3865
|
"bh_curly",
|
1618
3866
|
"bh_curly_center",
|
1619
3867
|
"bh_curly_open",
|
@@ -1624,178 +3872,175 @@
|
|
1624
3872
|
"bh_c_define_open",
|
1625
3873
|
"bh_c_define_close",
|
1626
3874
|
"bh_c_define_content",
|
1627
|
-
"
|
1628
|
-
"
|
1629
|
-
"
|
1630
|
-
"
|
1631
|
-
"
|
3875
|
+
"bh_regex",
|
3876
|
+
"bh_regex_center",
|
3877
|
+
"bh_regex_open",
|
3878
|
+
"bh_regex_close",
|
3879
|
+
"bh_regex_content"
|
3880
|
+
],
|
3881
|
+
"bracket_highlighter.locations":
|
3882
|
+
{
|
3883
|
+
"close":
|
3884
|
+
{
|
3885
|
+
},
|
3886
|
+
"icon":
|
3887
|
+
{
|
3888
|
+
},
|
3889
|
+
"open":
|
3890
|
+
{
|
3891
|
+
},
|
3892
|
+
"unmatched":
|
3893
|
+
{
|
3894
|
+
}
|
3895
|
+
},
|
3896
|
+
"bracket_highlighter.regions":
|
3897
|
+
[
|
1632
3898
|
"bh_double_quote",
|
1633
3899
|
"bh_double_quote_center",
|
1634
3900
|
"bh_double_quote_open",
|
1635
3901
|
"bh_double_quote_close",
|
1636
3902
|
"bh_double_quote_content",
|
3903
|
+
"bh_unmatched",
|
3904
|
+
"bh_unmatched_center",
|
3905
|
+
"bh_unmatched_open",
|
3906
|
+
"bh_unmatched_close",
|
3907
|
+
"bh_unmatched_content",
|
3908
|
+
"bh_round",
|
3909
|
+
"bh_round_center",
|
3910
|
+
"bh_round_open",
|
3911
|
+
"bh_round_close",
|
3912
|
+
"bh_round_content",
|
3913
|
+
"bh_default",
|
3914
|
+
"bh_default_center",
|
3915
|
+
"bh_default_open",
|
3916
|
+
"bh_default_close",
|
3917
|
+
"bh_default_content",
|
3918
|
+
"bh_tag",
|
3919
|
+
"bh_tag_center",
|
3920
|
+
"bh_tag_open",
|
3921
|
+
"bh_tag_close",
|
3922
|
+
"bh_tag_content",
|
1637
3923
|
"bh_square",
|
1638
3924
|
"bh_square_center",
|
1639
3925
|
"bh_square_open",
|
1640
3926
|
"bh_square_close",
|
1641
3927
|
"bh_square_content",
|
3928
|
+
"bh_angle",
|
3929
|
+
"bh_angle_center",
|
3930
|
+
"bh_angle_open",
|
3931
|
+
"bh_angle_close",
|
3932
|
+
"bh_angle_content",
|
3933
|
+
"bh_single_quote",
|
3934
|
+
"bh_single_quote_center",
|
3935
|
+
"bh_single_quote_open",
|
3936
|
+
"bh_single_quote_close",
|
3937
|
+
"bh_single_quote_content",
|
3938
|
+
"bh_curly",
|
3939
|
+
"bh_curly_center",
|
3940
|
+
"bh_curly_open",
|
3941
|
+
"bh_curly_close",
|
3942
|
+
"bh_curly_content",
|
3943
|
+
"bh_c_define",
|
3944
|
+
"bh_c_define_center",
|
3945
|
+
"bh_c_define_open",
|
3946
|
+
"bh_c_define_close",
|
3947
|
+
"bh_c_define_content",
|
1642
3948
|
"bh_regex",
|
1643
3949
|
"bh_regex_center",
|
1644
3950
|
"bh_regex_open",
|
1645
3951
|
"bh_regex_close",
|
1646
|
-
"bh_regex_content"
|
1647
|
-
"bh_round",
|
1648
|
-
"bh_round_center",
|
1649
|
-
"bh_round_open",
|
1650
|
-
"bh_round_close",
|
1651
|
-
"bh_round_content"
|
3952
|
+
"bh_regex_content"
|
1652
3953
|
],
|
1653
|
-
"color_scheme": "Packages/User/Color Highlighter/themes/ArtSchool.tmTheme",
|
1654
|
-
"history_list_is_closing": true,
|
1655
3954
|
"syntax": "Packages/Ruby/Ruby.sublime-syntax",
|
1656
3955
|
"tab_size": 2,
|
1657
3956
|
"translate_tabs_to_spaces": true
|
1658
3957
|
},
|
1659
3958
|
"translation.x": 0.0,
|
1660
|
-
"translation.y": 1809.0,
|
1661
|
-
"zoom_level": 1.0
|
1662
|
-
},
|
1663
|
-
"stack_index": 7,
|
1664
|
-
"type": "text"
|
1665
|
-
},
|
1666
|
-
{
|
1667
|
-
"buffer": 7,
|
1668
|
-
"semi_transient": false,
|
1669
|
-
"settings":
|
1670
|
-
{
|
1671
|
-
"buffer_size": 1070,
|
1672
|
-
"regions":
|
1673
|
-
{
|
1674
|
-
"match":
|
1675
|
-
{
|
1676
|
-
"flags": 112,
|
1677
|
-
"regions":
|
1678
|
-
[
|
1679
|
-
[
|
1680
|
-
142,
|
1681
|
-
152
|
1682
|
-
],
|
1683
|
-
[
|
1684
|
-
332,
|
1685
|
-
342
|
1686
|
-
],
|
1687
|
-
[
|
1688
|
-
561,
|
1689
|
-
571
|
1690
|
-
],
|
1691
|
-
[
|
1692
|
-
888,
|
1693
|
-
898
|
1694
|
-
]
|
1695
|
-
],
|
1696
|
-
"scope": ""
|
1697
|
-
}
|
1698
|
-
},
|
1699
|
-
"selection":
|
1700
|
-
[
|
1701
|
-
[
|
1702
|
-
131,
|
1703
|
-
137
|
1704
|
-
]
|
1705
|
-
],
|
1706
|
-
"settings":
|
1707
|
-
{
|
1708
|
-
"apply_syntax_touched": true,
|
1709
|
-
"detect_indentation": false,
|
1710
|
-
"line_numbers": false,
|
1711
|
-
"output_tag": 1,
|
1712
|
-
"result_base_dir": "",
|
1713
|
-
"result_file_regex": "^([^ \t].*):$",
|
1714
|
-
"result_line_regex": "^ +([0-9]+):",
|
1715
|
-
"scroll_past_end": true,
|
1716
|
-
"syntax": "Packages/Default/Find Results.hidden-tmLanguage",
|
1717
|
-
"translate_tabs_to_spaces": false
|
1718
|
-
},
|
1719
|
-
"translation.x": 0.0,
|
1720
3959
|
"translation.y": 0.0,
|
1721
3960
|
"zoom_level": 1.0
|
1722
3961
|
},
|
1723
|
-
"stack_index":
|
3962
|
+
"stack_index": 12,
|
1724
3963
|
"type": "text"
|
1725
3964
|
},
|
1726
3965
|
{
|
1727
|
-
"buffer":
|
1728
|
-
"file": "spec/
|
3966
|
+
"buffer": 18,
|
3967
|
+
"file": "spec/samples/info.yml",
|
1729
3968
|
"semi_transient": false,
|
1730
3969
|
"settings":
|
1731
3970
|
{
|
1732
|
-
"buffer_size":
|
3971
|
+
"buffer_size": 1132,
|
1733
3972
|
"regions":
|
1734
3973
|
{
|
1735
3974
|
},
|
1736
3975
|
"selection":
|
1737
3976
|
[
|
1738
3977
|
[
|
1739
|
-
|
1740
|
-
|
3978
|
+
1132,
|
3979
|
+
1132
|
1741
3980
|
]
|
1742
3981
|
],
|
1743
3982
|
"settings":
|
1744
3983
|
{
|
1745
3984
|
"apply_syntax_touched": true,
|
1746
3985
|
"bracket_highlighter.busy": false,
|
1747
|
-
"bracket_highlighter.
|
3986
|
+
"bracket_highlighter.clone": -1,
|
3987
|
+
"bracket_highlighter.clone_locations":
|
1748
3988
|
{
|
1749
3989
|
"close":
|
1750
3990
|
{
|
1751
|
-
"1":
|
1752
|
-
[
|
1753
|
-
560,
|
1754
|
-
563
|
1755
|
-
]
|
1756
3991
|
},
|
1757
3992
|
"icon":
|
1758
3993
|
{
|
1759
|
-
"1":
|
1760
|
-
[
|
1761
|
-
"Packages/BracketHighlighter/icons/dot.png",
|
1762
|
-
"brackethighlighter.default"
|
1763
|
-
]
|
1764
3994
|
},
|
1765
3995
|
"open":
|
1766
3996
|
{
|
1767
|
-
"1":
|
1768
|
-
[
|
1769
|
-
458,
|
1770
|
-
461
|
1771
|
-
]
|
1772
3997
|
},
|
1773
3998
|
"unmatched":
|
1774
3999
|
{
|
1775
4000
|
}
|
1776
4001
|
},
|
1777
|
-
"bracket_highlighter.
|
4002
|
+
"bracket_highlighter.clone_regions":
|
1778
4003
|
[
|
4004
|
+
"bh_double_quote",
|
4005
|
+
"bh_double_quote_center",
|
4006
|
+
"bh_double_quote_open",
|
4007
|
+
"bh_double_quote_close",
|
4008
|
+
"bh_double_quote_content",
|
1779
4009
|
"bh_unmatched",
|
1780
4010
|
"bh_unmatched_center",
|
1781
4011
|
"bh_unmatched_open",
|
1782
4012
|
"bh_unmatched_close",
|
1783
4013
|
"bh_unmatched_content",
|
4014
|
+
"bh_round",
|
4015
|
+
"bh_round_center",
|
4016
|
+
"bh_round_open",
|
4017
|
+
"bh_round_close",
|
4018
|
+
"bh_round_content",
|
4019
|
+
"bh_default",
|
4020
|
+
"bh_default_center",
|
4021
|
+
"bh_default_open",
|
4022
|
+
"bh_default_close",
|
4023
|
+
"bh_default_content",
|
1784
4024
|
"bh_tag",
|
1785
4025
|
"bh_tag_center",
|
1786
4026
|
"bh_tag_open",
|
1787
4027
|
"bh_tag_close",
|
1788
4028
|
"bh_tag_content",
|
4029
|
+
"bh_square",
|
4030
|
+
"bh_square_center",
|
4031
|
+
"bh_square_open",
|
4032
|
+
"bh_square_close",
|
4033
|
+
"bh_square_content",
|
4034
|
+
"bh_angle",
|
4035
|
+
"bh_angle_center",
|
4036
|
+
"bh_angle_open",
|
4037
|
+
"bh_angle_close",
|
4038
|
+
"bh_angle_content",
|
1789
4039
|
"bh_single_quote",
|
1790
4040
|
"bh_single_quote_center",
|
1791
4041
|
"bh_single_quote_open",
|
1792
4042
|
"bh_single_quote_close",
|
1793
4043
|
"bh_single_quote_content",
|
1794
|
-
"bh_default",
|
1795
|
-
"bh_default_center",
|
1796
|
-
"bh_default_open",
|
1797
|
-
"bh_default_close",
|
1798
|
-
"bh_default_content",
|
1799
4044
|
"bh_curly",
|
1800
4045
|
"bh_curly_center",
|
1801
4046
|
"bh_curly_open",
|
@@ -1806,65 +4051,12 @@
|
|
1806
4051
|
"bh_c_define_open",
|
1807
4052
|
"bh_c_define_close",
|
1808
4053
|
"bh_c_define_content",
|
1809
|
-
"bh_angle",
|
1810
|
-
"bh_angle_center",
|
1811
|
-
"bh_angle_open",
|
1812
|
-
"bh_angle_close",
|
1813
|
-
"bh_angle_content",
|
1814
|
-
"bh_double_quote",
|
1815
|
-
"bh_double_quote_center",
|
1816
|
-
"bh_double_quote_open",
|
1817
|
-
"bh_double_quote_close",
|
1818
|
-
"bh_double_quote_content",
|
1819
|
-
"bh_square",
|
1820
|
-
"bh_square_center",
|
1821
|
-
"bh_square_open",
|
1822
|
-
"bh_square_close",
|
1823
|
-
"bh_square_content",
|
1824
4054
|
"bh_regex",
|
1825
|
-
"bh_regex_center",
|
1826
|
-
"bh_regex_open",
|
1827
|
-
"bh_regex_close",
|
1828
|
-
"bh_regex_content"
|
1829
|
-
"bh_round",
|
1830
|
-
"bh_round_center",
|
1831
|
-
"bh_round_open",
|
1832
|
-
"bh_round_close",
|
1833
|
-
"bh_round_content"
|
4055
|
+
"bh_regex_center",
|
4056
|
+
"bh_regex_open",
|
4057
|
+
"bh_regex_close",
|
4058
|
+
"bh_regex_content"
|
1834
4059
|
],
|
1835
|
-
"color_scheme": "Packages/User/Color Highlighter/themes/ArtSchool.tmTheme",
|
1836
|
-
"syntax": "Packages/Better RSpec/Better RSpec.tmLanguage",
|
1837
|
-
"tab_size": 2,
|
1838
|
-
"translate_tabs_to_spaces": true
|
1839
|
-
},
|
1840
|
-
"translation.x": 0.0,
|
1841
|
-
"translation.y": 0.0,
|
1842
|
-
"zoom_level": 1.0
|
1843
|
-
},
|
1844
|
-
"stack_index": 5,
|
1845
|
-
"type": "text"
|
1846
|
-
},
|
1847
|
-
{
|
1848
|
-
"buffer": 9,
|
1849
|
-
"file": "spec/samples/info.yml",
|
1850
|
-
"semi_transient": false,
|
1851
|
-
"settings":
|
1852
|
-
{
|
1853
|
-
"buffer_size": 1036,
|
1854
|
-
"regions":
|
1855
|
-
{
|
1856
|
-
},
|
1857
|
-
"selection":
|
1858
|
-
[
|
1859
|
-
[
|
1860
|
-
1036,
|
1861
|
-
1036
|
1862
|
-
]
|
1863
|
-
],
|
1864
|
-
"settings":
|
1865
|
-
{
|
1866
|
-
"apply_syntax_touched": true,
|
1867
|
-
"bracket_highlighter.busy": false,
|
1868
4060
|
"bracket_highlighter.locations":
|
1869
4061
|
{
|
1870
4062
|
"close":
|
@@ -1882,26 +4074,46 @@
|
|
1882
4074
|
},
|
1883
4075
|
"bracket_highlighter.regions":
|
1884
4076
|
[
|
4077
|
+
"bh_double_quote",
|
4078
|
+
"bh_double_quote_center",
|
4079
|
+
"bh_double_quote_open",
|
4080
|
+
"bh_double_quote_close",
|
4081
|
+
"bh_double_quote_content",
|
1885
4082
|
"bh_unmatched",
|
1886
4083
|
"bh_unmatched_center",
|
1887
4084
|
"bh_unmatched_open",
|
1888
4085
|
"bh_unmatched_close",
|
1889
4086
|
"bh_unmatched_content",
|
4087
|
+
"bh_round",
|
4088
|
+
"bh_round_center",
|
4089
|
+
"bh_round_open",
|
4090
|
+
"bh_round_close",
|
4091
|
+
"bh_round_content",
|
4092
|
+
"bh_default",
|
4093
|
+
"bh_default_center",
|
4094
|
+
"bh_default_open",
|
4095
|
+
"bh_default_close",
|
4096
|
+
"bh_default_content",
|
1890
4097
|
"bh_tag",
|
1891
4098
|
"bh_tag_center",
|
1892
4099
|
"bh_tag_open",
|
1893
4100
|
"bh_tag_close",
|
1894
4101
|
"bh_tag_content",
|
4102
|
+
"bh_square",
|
4103
|
+
"bh_square_center",
|
4104
|
+
"bh_square_open",
|
4105
|
+
"bh_square_close",
|
4106
|
+
"bh_square_content",
|
4107
|
+
"bh_angle",
|
4108
|
+
"bh_angle_center",
|
4109
|
+
"bh_angle_open",
|
4110
|
+
"bh_angle_close",
|
4111
|
+
"bh_angle_content",
|
1895
4112
|
"bh_single_quote",
|
1896
4113
|
"bh_single_quote_center",
|
1897
4114
|
"bh_single_quote_open",
|
1898
4115
|
"bh_single_quote_close",
|
1899
4116
|
"bh_single_quote_content",
|
1900
|
-
"bh_default",
|
1901
|
-
"bh_default_center",
|
1902
|
-
"bh_default_open",
|
1903
|
-
"bh_default_close",
|
1904
|
-
"bh_default_content",
|
1905
4117
|
"bh_curly",
|
1906
4118
|
"bh_curly_center",
|
1907
4119
|
"bh_curly_open",
|
@@ -1912,34 +4124,12 @@
|
|
1912
4124
|
"bh_c_define_open",
|
1913
4125
|
"bh_c_define_close",
|
1914
4126
|
"bh_c_define_content",
|
1915
|
-
"bh_angle",
|
1916
|
-
"bh_angle_center",
|
1917
|
-
"bh_angle_open",
|
1918
|
-
"bh_angle_close",
|
1919
|
-
"bh_angle_content",
|
1920
|
-
"bh_double_quote",
|
1921
|
-
"bh_double_quote_center",
|
1922
|
-
"bh_double_quote_open",
|
1923
|
-
"bh_double_quote_close",
|
1924
|
-
"bh_double_quote_content",
|
1925
|
-
"bh_square",
|
1926
|
-
"bh_square_center",
|
1927
|
-
"bh_square_open",
|
1928
|
-
"bh_square_close",
|
1929
|
-
"bh_square_content",
|
1930
4127
|
"bh_regex",
|
1931
4128
|
"bh_regex_center",
|
1932
4129
|
"bh_regex_open",
|
1933
4130
|
"bh_regex_close",
|
1934
|
-
"bh_regex_content"
|
1935
|
-
"bh_round",
|
1936
|
-
"bh_round_center",
|
1937
|
-
"bh_round_open",
|
1938
|
-
"bh_round_close",
|
1939
|
-
"bh_round_content"
|
4131
|
+
"bh_regex_content"
|
1940
4132
|
],
|
1941
|
-
"color_scheme": "Packages/User/Color Highlighter/themes/ArtSchool.tmTheme",
|
1942
|
-
"history_list_is_closing": true,
|
1943
4133
|
"syntax": "Packages/YAML/YAML.sublime-syntax",
|
1944
4134
|
"tab_size": 2,
|
1945
4135
|
"translate_tabs_to_spaces": true
|
@@ -1948,7 +4138,7 @@
|
|
1948
4138
|
"translation.y": 0.0,
|
1949
4139
|
"zoom_level": 1.0
|
1950
4140
|
},
|
1951
|
-
"stack_index":
|
4141
|
+
"stack_index": 10,
|
1952
4142
|
"type": "text"
|
1953
4143
|
}
|
1954
4144
|
]
|
@@ -1956,7 +4146,7 @@
|
|
1956
4146
|
],
|
1957
4147
|
"incremental_find":
|
1958
4148
|
{
|
1959
|
-
"height":
|
4149
|
+
"height": 41.0
|
1960
4150
|
},
|
1961
4151
|
"input":
|
1962
4152
|
{
|
@@ -1994,7 +4184,7 @@
|
|
1994
4184
|
"menu_visible": true,
|
1995
4185
|
"output.exec":
|
1996
4186
|
{
|
1997
|
-
"height":
|
4187
|
+
"height": 132.0
|
1998
4188
|
},
|
1999
4189
|
"output.find_results":
|
2000
4190
|
{
|
@@ -2008,7 +4198,7 @@
|
|
2008
4198
|
"project": "mork.sublime-project",
|
2009
4199
|
"replace":
|
2010
4200
|
{
|
2011
|
-
"height":
|
4201
|
+
"height": 52.0
|
2012
4202
|
},
|
2013
4203
|
"save_all_on_build": true,
|
2014
4204
|
"select_file":
|
@@ -2018,37 +4208,149 @@
|
|
2018
4208
|
"selected_items":
|
2019
4209
|
[
|
2020
4210
|
[
|
2021
|
-
"
|
2022
|
-
"lib/mork/
|
4211
|
+
"ver",
|
4212
|
+
"lib/mork/version.rb"
|
2023
4213
|
],
|
2024
4214
|
[
|
2025
|
-
"
|
2026
|
-
"
|
4215
|
+
"gem",
|
4216
|
+
"mork.gemspec"
|
2027
4217
|
],
|
2028
4218
|
[
|
2029
|
-
"
|
2030
|
-
"
|
4219
|
+
"travi",
|
4220
|
+
".travis.yml"
|
2031
4221
|
],
|
2032
4222
|
[
|
2033
|
-
"
|
2034
|
-
"spec/
|
4223
|
+
"npathse",
|
4224
|
+
"spec/mork/npatch_spec.rb"
|
2035
4225
|
],
|
2036
4226
|
[
|
2037
|
-
"
|
4227
|
+
"rake",
|
4228
|
+
"Rakefile"
|
4229
|
+
],
|
4230
|
+
[
|
4231
|
+
"gems",
|
4232
|
+
"mork.gemspec"
|
4233
|
+
],
|
4234
|
+
[
|
4235
|
+
"giti",
|
4236
|
+
".gitignore"
|
4237
|
+
],
|
4238
|
+
[
|
4239
|
+
"",
|
2038
4240
|
"spec/mork/sheet_omr_spec.rb"
|
2039
4241
|
],
|
4242
|
+
[
|
4243
|
+
"read",
|
4244
|
+
"README.md"
|
4245
|
+
],
|
4246
|
+
[
|
4247
|
+
"magispe",
|
4248
|
+
"spec/mork/magicko_spec.rb"
|
4249
|
+
],
|
4250
|
+
[
|
4251
|
+
"grid",
|
4252
|
+
"lib/mork/grid.rb"
|
4253
|
+
],
|
2040
4254
|
[
|
2041
4255
|
"mima",
|
2042
4256
|
"lib/mork/mimage.rb"
|
2043
4257
|
],
|
2044
4258
|
[
|
2045
|
-
"
|
2046
|
-
"lib/mork/
|
4259
|
+
"ridom",
|
4260
|
+
"lib/mork/grid_omr.rb"
|
4261
|
+
],
|
4262
|
+
[
|
4263
|
+
"mimage",
|
4264
|
+
"lib/mork/mimage.rb"
|
2047
4265
|
],
|
2048
4266
|
[
|
2049
4267
|
"npa",
|
2050
4268
|
"lib/mork/npatch.rb"
|
2051
4269
|
],
|
4270
|
+
[
|
4271
|
+
"magick",
|
4272
|
+
"lib/mork/magicko.rb"
|
4273
|
+
],
|
4274
|
+
[
|
4275
|
+
"gridom",
|
4276
|
+
"lib/mork/grid_omr.rb"
|
4277
|
+
],
|
4278
|
+
[
|
4279
|
+
"jdoe",
|
4280
|
+
"spec/samples/jdoe/layout.yml"
|
4281
|
+
],
|
4282
|
+
[
|
4283
|
+
"base",
|
4284
|
+
"spec/samples/base_layout.yml"
|
4285
|
+
],
|
4286
|
+
[
|
4287
|
+
"info",
|
4288
|
+
"spec/samples/info.yml"
|
4289
|
+
],
|
4290
|
+
[
|
4291
|
+
"spec",
|
4292
|
+
"spec/spec_helper.rb"
|
4293
|
+
],
|
4294
|
+
[
|
4295
|
+
"sheeo",
|
4296
|
+
"lib/mork/sheet_omr.rb"
|
4297
|
+
],
|
4298
|
+
[
|
4299
|
+
"omr",
|
4300
|
+
"spec/mork/sheet_omr_spec.rb"
|
4301
|
+
],
|
4302
|
+
[
|
4303
|
+
"magi",
|
4304
|
+
"lib/mork/magicko.rb"
|
4305
|
+
],
|
4306
|
+
[
|
4307
|
+
"spehel",
|
4308
|
+
"spec/spec_helper.rb"
|
4309
|
+
],
|
4310
|
+
[
|
4311
|
+
"gelo",
|
4312
|
+
"Gemfile.lock"
|
4313
|
+
],
|
4314
|
+
[
|
4315
|
+
"mimaspe",
|
4316
|
+
"spec/mork/mimage_spec.rb"
|
4317
|
+
],
|
4318
|
+
[
|
4319
|
+
"sheet",
|
4320
|
+
"spec/mork/sheet_omr_spec.rb"
|
4321
|
+
],
|
4322
|
+
[
|
4323
|
+
"magicko",
|
4324
|
+
"lib/mork/magicko.rb"
|
4325
|
+
],
|
4326
|
+
[
|
4327
|
+
"gemsp",
|
4328
|
+
"mork.gemspec"
|
4329
|
+
],
|
4330
|
+
[
|
4331
|
+
"ruby",
|
4332
|
+
".ruby-version"
|
4333
|
+
],
|
4334
|
+
[
|
4335
|
+
"shee",
|
4336
|
+
"lib/mork/sheet_omr.rb"
|
4337
|
+
],
|
4338
|
+
[
|
4339
|
+
"gri",
|
4340
|
+
"lib/mork/grid.rb"
|
4341
|
+
],
|
4342
|
+
[
|
4343
|
+
"pdf",
|
4344
|
+
"lib/mork/grid_pdf.rb"
|
4345
|
+
],
|
4346
|
+
[
|
4347
|
+
"s",
|
4348
|
+
"spec/mork/sheet_omr_spec.rb"
|
4349
|
+
],
|
4350
|
+
[
|
4351
|
+
"coor",
|
4352
|
+
"lib/mork/coord.rb"
|
4353
|
+
],
|
2052
4354
|
[
|
2053
4355
|
"guar",
|
2054
4356
|
"Guardfile"
|
@@ -2065,10 +4367,6 @@
|
|
2065
4367
|
"sheepdsp",
|
2066
4368
|
"spec/mork/sheet_pdf_spec.rb"
|
2067
4369
|
],
|
2068
|
-
[
|
2069
|
-
"",
|
2070
|
-
"spec/mork/sheet_pdf_spec.rb"
|
2071
|
-
],
|
2072
4370
|
[
|
2073
4371
|
"sheepdf",
|
2074
4372
|
"lib/mork/sheet_pdf.rb"
|
@@ -2089,10 +4387,6 @@
|
|
2089
4387
|
"verson",
|
2090
4388
|
"lib/mork/version.rb"
|
2091
4389
|
],
|
2092
|
-
[
|
2093
|
-
"gem",
|
2094
|
-
"mork.gemspec"
|
2095
|
-
],
|
2096
4390
|
[
|
2097
4391
|
"sheeomr",
|
2098
4392
|
"lib/mork/sheet_omr.rb"
|
@@ -2209,10 +4503,6 @@
|
|
2209
4503
|
"omrjob",
|
2210
4504
|
"app/jobs/omr_job.rb"
|
2211
4505
|
],
|
2212
|
-
[
|
2213
|
-
"grid",
|
2214
|
-
"config/grid.yml"
|
2215
|
-
],
|
2216
4506
|
[
|
2217
4507
|
"job",
|
2218
4508
|
"app/jobs/import_job.rb"
|
@@ -2221,10 +4511,6 @@
|
|
2221
4511
|
"16164",
|
2222
4512
|
"db/migrate/20160527161643_add_pages_to_omr_scans.rb"
|
2223
4513
|
],
|
2224
|
-
[
|
2225
|
-
"omr",
|
2226
|
-
"app/models/omr_scan.rb"
|
2227
|
-
],
|
2228
4514
|
[
|
2229
4515
|
"omrcon",
|
2230
4516
|
"app/controllers/omr_scans_controller.rb"
|
@@ -2432,114 +4718,22 @@
|
|
2432
4718
|
[
|
2433
4719
|
"enroll",
|
2434
4720
|
"app/models/enrollment.rb"
|
2435
|
-
],
|
2436
|
-
[
|
2437
|
-
"mul",
|
2438
|
-
"app/models/multi_choice.rb"
|
2439
|
-
],
|
2440
|
-
[
|
2441
|
-
"choc",
|
2442
|
-
"app/models/choice.rb"
|
2443
|
-
],
|
2444
|
-
[
|
2445
|
-
"formscon",
|
2446
|
-
"app/controllers/forms_controller.rb"
|
2447
|
-
],
|
2448
|
-
[
|
2449
|
-
"gemlo",
|
2450
|
-
"Gemfile.lock"
|
2451
|
-
],
|
2452
|
-
[
|
2453
|
-
"applcon",
|
2454
|
-
"app/controllers/application_controller.rb"
|
2455
|
-
],
|
2456
|
-
[
|
2457
|
-
"sle",
|
2458
|
-
"features/selections.feature"
|
2459
|
-
],
|
2460
|
-
[
|
2461
|
-
"prote",
|
2462
|
-
"features/protect_memberships.feature"
|
2463
|
-
],
|
2464
|
-
[
|
2465
|
-
"presetea",
|
2466
|
-
"features/preset_eams.feature"
|
2467
|
-
],
|
2468
|
-
[
|
2469
|
-
"ruby",
|
2470
|
-
".ruby-version"
|
2471
|
-
],
|
2472
|
-
[
|
2473
|
-
"item",
|
2474
|
-
"app/models/item.rb"
|
2475
|
-
],
|
2476
|
-
[
|
2477
|
-
"disccon",
|
2478
|
-
"app/controllers/disciplines_controller.rb"
|
2479
|
-
],
|
2480
|
-
[
|
2481
|
-
"sand",
|
2482
|
-
"lib/sandbox.rb"
|
2483
|
-
],
|
2484
|
-
[
|
2485
|
-
"exgracon",
|
2486
|
-
"app/controllers/exam_grades_controller.rb"
|
2487
|
-
],
|
2488
|
-
[
|
2489
|
-
"itemsco",
|
2490
|
-
"app/models/item_scoring.rb"
|
2491
|
-
],
|
2492
|
-
[
|
2493
|
-
"scoring",
|
2494
|
-
"app/models/scoring.rb"
|
2495
|
-
],
|
2496
|
-
[
|
2497
|
-
"itesco",
|
2498
|
-
"app/models/item_scoring.rb"
|
2499
|
-
],
|
2500
|
-
[
|
2501
|
-
"versioit",
|
2502
|
-
"app/models/version_item.rb"
|
2503
|
-
],
|
2504
|
-
[
|
2505
|
-
"mucho",
|
2506
|
-
"app/models/multi_choice.rb"
|
2507
|
-
],
|
2508
|
-
[
|
2509
|
-
"muchnew",
|
2510
|
-
"app/views/multi_choices/new.html.haml"
|
2511
|
-
],
|
2512
|
-
[
|
2513
|
-
"mufor",
|
2514
|
-
"app/views/multi_choices/_form.html.haml"
|
2515
|
-
],
|
2516
|
-
[
|
2517
|
-
"orgfo",
|
2518
|
-
"app/views/orgs/_form.html.haml"
|
2519
|
-
],
|
2520
|
-
[
|
2521
|
-
"env",
|
2522
|
-
"config/environment.rb"
|
2523
|
-
],
|
2524
|
-
[
|
2525
|
-
"4245",
|
2526
|
-
"db/migrate/20160426174245_add_default_correct_points_to_orgs.rb"
|
2527
|
-
],
|
2528
|
-
[
|
2529
|
-
"rout",
|
2530
|
-
"config/routes.rb"
|
2531
4721
|
]
|
2532
4722
|
],
|
2533
4723
|
"width": 0.0
|
2534
4724
|
},
|
2535
4725
|
"select_project":
|
2536
4726
|
{
|
2537
|
-
"height":
|
4727
|
+
"height": 500.0,
|
2538
4728
|
"last_filter": "",
|
2539
4729
|
"selected_items":
|
2540
4730
|
[
|
4731
|
+
[
|
4732
|
+
"",
|
4733
|
+
"~/dev/ruby/mork/mork.sublime-project"
|
4734
|
+
]
|
2541
4735
|
],
|
2542
|
-
"width":
|
4736
|
+
"width": 380.0
|
2543
4737
|
},
|
2544
4738
|
"select_symbol":
|
2545
4739
|
{
|
@@ -2550,7 +4744,7 @@
|
|
2550
4744
|
],
|
2551
4745
|
"width": 0.0
|
2552
4746
|
},
|
2553
|
-
"selected_group":
|
4747
|
+
"selected_group": 0,
|
2554
4748
|
"settings":
|
2555
4749
|
{
|
2556
4750
|
},
|