added some more characters

svn: r7329
This commit is contained in:
Robby Findler 2007-09-13 20:04:46 +00:00
parent 00c9f0b1a1
commit 6d32dabc63

View File

@ -370,8 +370,14 @@
(define init-wordbreak-map
(λ (map)
(send map set-map #\- '(line selection))
(send map set-map #\: '(line selection))))
(send map set-map #\< '(line selection)) ; interfaces e.g.the canvas<%> interface
(send map set-map #\> '(line selection)) ; interfaces, casts e.g. string->path
(send map set-map #\% '(line selection)) ; intefraces, classes
(send map set-map #\? '(line selection)) ; predicates
(send map set-map #\' '(line selection)) ; literal symbols
(send map set-map #\! '(line selection)) ; assignments e.g. set
(send map set-map #\- '(line selection)) ; hyphens
(send map set-map #\: '(line selection)))); valid identifiers with colons
(define wordbreak-map (make-object editor-wordbreak-map%))
(define (get-wordbreak-map) wordbreak-map)