tweekmonster / impsort.vim

Sort and highlight Python imports in Vim
MIT License
37 stars 6 forks source link

Order of imported items is changed? #2

Closed beaugunderson closed 8 years ago

beaugunderson commented 8 years ago

from django.contrib.auth.models import AbstractUser, UserManager

becomes

from django.contrib.auth.models import UserManager, AbstractUser

tweekmonster commented 8 years ago

This is the same issue as with #3, except using the g:impsort_method_imports option.

tweekmonster commented 8 years ago

I forgot to clarify that the you're right that the sort order is wrong. It was one of those moments where I subconsciously retyped a line above. I also misspelled the variable name 😱

beaugunderson commented 8 years ago

thanks for the quick fix!