Update 55000-tab_completion.py

This commit is contained in:
chrys 2019-08-23 11:39:11 +02:00 committed by GitHub
parent 3271fe9010
commit 55e9f9e4b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ class command():
def run(self):
# try to detect the tab completion by cursor change
xMove = abs(self.env['screen']['newCursor']['x'] - self.env['screen']['oldCursor']['x'])
if xMove <= 2:
if xMove == 1:
return
# is there any change?
if not self.env['runtime']['screenManager'].isDelta():