summaryrefslogtreecommitdiff
path: root/gocomplete/tests.go
AgeCommit message (Collapse)Author
2019-11-18update module import pathEyal Posener
2019-11-18V2Eyal Posener
2017-11-04Filter matches as a final stageEyal Posener
This simplifies the prediction logic writing, the predictor doesn't need to filter our according to line matching, instead it returns everything and the filtering is done at the end. This does not break current behavior.
2017-05-15gocomplete: run only runnable go filesEyal Posener
when typing 'go run', the completion will complete only go files which are in main package and have a main function.
2017-05-11Change Match to be a functionEyal Posener
2017-05-11Add Predictor interfaceEyal Posener
2017-05-08[gocomplete] fix test name completionEyal Posener
2017-05-07Move match to a separate packageEyal Posener
2017-05-06improve docsEyal Posener
2017-05-06Change Predicate to be of function typeEyal Posener
2017-05-06Use local completion files and directories according to typed commandEyal Posener
2017-05-06Use pointers to predicatesEyal Posener
2017-05-06Roughly add all go commandsEyal Posener