handle trailing `;` when completing import
Closed this issue · 0 comments
datho7561 commented
eg. open completion at |
and accept java.util.List
import java.util.Li|;
the result is currently:
import java.util.List;;
However, we also want to preserve:
import java.util.Li|
completing to
import java.util.List;