mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-19 14:51:13 -03:00
Having the prelude in wchar is not great. The wchar module was empty except for the prelude, and its prelude included things from wutil. Having a top-level prelude module in the main crate resolves this. It allows us to completely remove the wchar module, and a top-level prelude module makes more sense conceptually. Putting non-wchar things into the prelude also becomes more sensible, if we ever want to do that. Closes #12182