You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On autocompletion event, I call the command overwrite_commit_completion which just calls the commit_completion. This should be the same cause of the problem: #49 (FFP post cleanup path:' merge set ' ~~> ' merge set ')
Comment out this line on this package, fixes the problem:
Comparing both full debugging outputs we see that the only difference is the line contents. The start and end points are correct on both cases, but while using the completion indirection by a window command, the view.substr does not return the inserted text, but the old contents on the position before the completion take place.
The text was updated successfully, but these errors were encountered:
evandrocoan
added a commit
to evandrocoan/OverrideCommitCompletion
that referenced
this issue
Feb 14, 2018
Console with debug:
This only happens when the
commit_completion
is triggered by an indirection like this:On autocompletion event, I call the command
overwrite_commit_completion
which just calls thecommit_completion
. This should be the same cause of the problem: #49 (FFP post cleanup path:' merge set ' ~~> ' merge set ')Comment out this line on this package, fixes the problem:
FuzzyFilePath/QueryCompletionListener.py
Line 86 in 07387b6
When the
commit_completion
command is not redirected, this is the console output from my debugging:When there is the mentioned redirection, this is the console output:
Now I added more debugging power:
This is without the indirection:
This is with the indirection:
Patched function:
Comparing both full debugging outputs we see that the only difference is the line contents. The start and end points are correct on both cases, but while using the completion indirection by a window command, the
view.substr
does not return the inserted text, but the old contents on the position before the completion take place.The text was updated successfully, but these errors were encountered: