[audit] set showmode=false — redundant with custom statusline#179
Closed
stanfish06 wants to merge 1 commit into
Closed
[audit] set showmode=false — redundant with custom statusline#179stanfish06 wants to merge 1 commit into
stanfish06 wants to merge 1 commit into
Conversation
The custom statusline already shows the current mode with colour-coded [N]/[I]/[V]/… indicators. Keeping showmode=true causes Neovim to also print "-- INSERT --" / "-- VISUAL --" in the command-line area on every mode change, which doubles the information and adds visual noise. https://claude.ai/code/session_01GHYEWxoG5uHqsZM28upN1w
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
lua/config/options.lua:59setsvim.o.showmode = true.Where
lua/config/options.lua— line 59.Why it matters
The custom statusline (
lua/config/statusline.lua) already renders a colour-coded mode indicator —[N](green),[I](purple),[V](yellow), etc. — on every mode change. Withshowmode = true, Neovim also prints-- INSERT --/-- VISUAL --in the command-line area below the statusline, giving two simultaneous mode displays. Setting it tofalseremoves the redundant message without losing any information.Recommended action
Test plan
[I]indicator shows; no-- INSERT --in the cmdline[V]in statusline[C]in statusline; no-- COMMAND --belowhttps://claude.ai/code/session_01GHYEWxoG5uHqsZM28upN1w
Generated by Claude Code