func(r rune) bool
| 57 | } |
| 58 | |
| 59 | type RuneMatcher func(r rune) bool |
| 60 | |
| 61 | func (buffer *Buffer) SelectWordAt(pos Position, runeMatcher RuneMatcher) { |
| 62 | start, end, _, _, found := buffer.FindWordAt(pos, runeMatcher) |
nothing calls this directly
no outgoing calls
no test coverage detected