From 957ee8084d89d5437d047aa3fef734fe005497c4 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 11 Feb 2018 17:58:00 +0100 Subject: Remove the """smart""" command completion --- poezio/tabs/basetabs.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/poezio/tabs/basetabs.py b/poezio/tabs/basetabs.py index a4e9d949..7418722d 100644 --- a/poezio/tabs/basetabs.py +++ b/poezio/tabs/basetabs.py @@ -245,14 +245,6 @@ class Tab(object): # Otherwise we would need to add a useless space before being # able to complete the arguments. hit_copy = set(the_input.hit_list) - while not hit_copy: - whitespace = the_input.text.find(' ') - if whitespace == -1: - whitespace = len(the_input.text) - the_input.text = the_input.text[:whitespace - - 1] + the_input.text[whitespace:] - the_input.new_completion(words, 0) - hit_copy = set(the_input.hit_list) if len(hit_copy) == 1: the_input.do_command(' ') the_input.reset_completion() -- cgit v1.2.3