Skip to content

Commit

Permalink
[complete] remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
chzyer committed Apr 1, 2016
1 parent 9d26a3b commit e950f01
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions complete_segment.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
package readline

import (
"strconv"

"github.com/chzyer/readline/runes"
)
import "github.com/chzyer/readline/runes"

type SegmentCompleter interface {
// a
Expand Down Expand Up @@ -75,6 +71,5 @@ func (c *SegmentComplete) Do(line []rune, pos int) (newLine [][]rune, offset int

cands := c.DoSegment(segment, idx)
newLine, offset = RetSegment(segment, cands, idx)
Debug(strconv.Quote(string(line)), cands)
return newLine, offset
}

0 comments on commit e950f01

Please sign in to comment.