-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Statusbar adds "^" fillchars in Ataraxis mode #100
Comments
@Mange have you tried setting this in your true-zen config:
? |
@Mange 1488013 makes it so whatever I've actually been experiencing issues similar to you, and I made a fork of the project that fixes them. I haven't made a PR since I made some breaking changes and did quite a bit of opinionated refactoring that made it easier for me to reason about the codebase. In addition to fixing this issue, minimalist and ataraxis are (mostly) decoupled so that you can configure minimalist without those changes trickling down to ataraxis, enabling one mode disables all the other modes first to stop nesting issues, If you want to try it out to see if that fixes the If you do try it, let me know how it works out for you! |
I just cloned your dotfiles and here's what I see: Perhaps you forgot to add EDIT: I just went ahead and pushed to the fork's |
Ha ha, yeah. I must've forgotten that change. I can confirm I get the correct results now in your fork. 🤦 Thank you! |
It's my second attempt trying this plugin after a long time (I've been using folke/zen-mode.nvim), and this issue comes up right away. @loqusion's fork indeed fixes the problem. |
Nearly 2 years later, and I ran into this issue. Searched through the plugin's issues and found you, don't know how many people actually ran into this at all, but we appreciate you lol. Really unfortunate problem with this plugin, as I run into lag issues with folke's zen plugin (love folke, I probably just did something wrong with my config, but this plugin has everything I need and I've already spent a couple too many hours configuring my writing environment for the day haha). TL;DR, thanks man. |
I'm not sure why this happens to me specifically, but it appears to be standard behavior of Vim, so I would presume others have the same issue.
When the main window is focused, then the statusbar adds the fillchars. When focusing another "window", then that window gets it instead.
Left, Right, and Bottom windows do not get this.
According to the above linked StackExchange link, this happens when
StatusLine
andStatusLineNC
have the same highlight.Here's a different discussion in
nord-vim
about how they worked around it: nordtheme/vim#37Vim's manual says that
fillchars
is both a global value or a window-local value. Perhaps we could override thefillchars
to a non-breaking space and restore it when exiting the mode?[EDIT:] This is on the latest
main
commit, after #99 was fixed. The problem was there before #99 too, but I was not able to track this down until now.The text was updated successfully, but these errors were encountered: