##// END OF EJS Templates
Promote keywords arguments completion....
Matthias Bussonnier -
Show More
@@ -190,6 +190,9 b' def completions_sorting_key(word):'
190 elif word.startswith('_'):
190 elif word.startswith('_'):
191 prio1 = 1
191 prio1 = 1
192
192
193 if word.endswith('='):
194 prio1 = -1
195
193 if word.startswith('%%'):
196 if word.startswith('%%'):
194 # If there's another % in there, this is something else, so leave it alone
197 # If there's another % in there, this is something else, so leave it alone
195 if not "%" in word[2:]:
198 if not "%" in word[2:]:
General Comments 0
You need to be logged in to leave comments. Login now