I have enable_tab_scrolling disabled (I usually have a large number of tabs open, and I can see more with it off). However, with it off, it seems like tab re-ordering is somewhat broken, especially when the open files have long names. To repro, run the following to get the same collection of files I seeing (customize temp_dir to taste):
import random, string, os
temp_dir = 'C:/foo'
random.seed(0)
for ii in range(20):
fname = ''.join(random.choice(string.ascii_lowercase) for _ in range(random.randint(30,50)))
open(os.path.join(temp_dir, fname), 'w').close()
…and open them all. Then, try dragging various tabs left and right. What I’m seeing is that the location the tab is inserted doesn’t light up with where the mouse is:
This is happening both on Windows and Linux.
John