TaDaa / vimade

An eye friendly plugin that fades your inactive buffers and preserves your syntax highlighting!
MIT License
486 stars 8 forks source link

Fix #13 recursive import of signs #14

Closed zamazir closed 5 years ago

zamazir commented 5 years ago

The module signs was imported in bridge.py and fader.py. fader was also imported in signs.py leading to a recursive import of signs and the python error "ImportError: cannot import name signs". This lead to the plugin not starting correctly at vim startup and a load of vim error messages.

The signs module is already imported in bridge.py and fader is not imported in any other modules except for signs itself which makes the import of signs in fader.py unnecessary. Therefore, the import in fader.py was simply removed.