Any way to have snippets on the left rather than on the right?
jbrilha opened this issue · 2 comments
I usually just use a quarter of my screen for each terminal window and with the default config most snippets aren't visible, so I was wondering if there's a way to move columns around?
I can change the width percentages and such of the tags and comments in the config to make the snippets more visible, but I'd still prefer having them on the left if possible, did I miss something in the documentation or is it just not doable?
Thanks!
Thanks for opening your first issue here! In case you're facing a bug, please update navi to the latest version first. Maybe the bug is already solved! :)
That's not possible and implementing it isn't trivial: basically navi needs to build the input to fzf in the col1;col2;col2
format. Then, it needs to parse this result into col1
then col2
then col3
.
So everything is hardcoded and there's an explicit assumption of what the nth column means.
The cleanest way to implement this would be for fzf to implement the column moving functionality itself. This way navi wouldn't need to worry about it: in this scenario, perhaps col1 was replaced with col2 but navi still sees the first column as col1.