Hi,
I found this wonderful package recently used it for a few days. I found one problem:
When I press tab to complete current word, the cursor will be left in the original place before the completion happened. It will be moved to the end of the completed word if I execute completion-at-point directly.
After tracing the code a little bit, I believe it's due to the save-excursion added in this commit. I removed that save-excursion and it works well now. But that save-excursion should be there for some reason I didn't get.
Hi, I found this wonderful package recently used it for a few days. I found one problem:
completion-at-point
directly.After tracing the code a little bit, I believe it's due to the
save-excursion
added in this commit. I removed thatsave-excursion
and it works well now. But thatsave-excursion
should be there for some reason I didn't get.