Skip to content

Commit

Permalink
Ignore Region*.Cut
Browse files Browse the repository at this point in the history
  • Loading branch information
quarnster committed Oct 21, 2013
1 parent f93da62 commit 8b958e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/python.go
Original file line number Diff line number Diff line change
Expand Up @@ -393,8 +393,8 @@ func main() {
return sn
}
data := [][]string{
{"../backend/sublime/region.go", generateWrapper(reflect.TypeOf(text.Region{}), true, nil)},
{"../backend/sublime/regionset.go", generateWrapper(reflect.TypeOf(&text.RegionSet{}), false, regexp.MustCompile("Less|Swap|Adjust|Has").MatchString)},
{"../backend/sublime/region.go", generateWrapper(reflect.TypeOf(text.Region{}), true, regexp.MustCompile("Cut").MatchString)},
{"../backend/sublime/regionset.go", generateWrapper(reflect.TypeOf(&text.RegionSet{}), false, regexp.MustCompile("Less|Swap|Adjust|Has|Cut").MatchString)},
{"../backend/sublime/edit.go", generateWrapper(reflect.TypeOf(&backend.Edit{}), false, regexp.MustCompile("Apply|Undo").MatchString)},
{"../backend/sublime/view.go", generateWrapper(reflect.TypeOf(&backend.View{}), false, regexp.MustCompile("Buffer|Syntax|CommandHistory|Show|AddRegions|UndoStack").MatchString)},
{"../backend/sublime/window.go", generateWrapper(reflect.TypeOf(&backend.Window{}), false, regexp.MustCompile("OpenFile|SetActiveView").MatchString)},
Expand Down

0 comments on commit 8b958e6

Please sign in to comment.