##// END OF EJS Templates
Merge pull request #9426 from Carreau/kwarg-priority...
Thomas Kluyver -
r22284:90b87b9a merge
parent child Browse files
Show More
@@ -190,6 +190,9 b' def completions_sorting_key(word):'
190 190 elif word.startswith('_'):
191 191 prio1 = 1
192 192
193 if word.endswith('='):
194 prio1 = -1
195
193 196 if word.startswith('%%'):
194 197 # If there's another % in there, this is something else, so leave it alone
195 198 if not "%" in word[2:]:
General Comments 0
You need to be logged in to leave comments. Login now