Port the support for EndOfBuffer (eob) item in 'fillchars' from NeoVim#7832
Closed
yegappan wants to merge 1 commit intovim:masterfrom
Closed
Port the support for EndOfBuffer (eob) item in 'fillchars' from NeoVim#7832yegappan wants to merge 1 commit intovim:masterfrom
yegappan wants to merge 1 commit intovim:masterfrom
Conversation
Codecov Report
@@ Coverage Diff @@
## master #7832 +/- ##
==========================================
- Coverage 89.05% 88.90% -0.15%
==========================================
Files 148 148
Lines 164892 162343 -2549
==========================================
- Hits 146839 144326 -2513
+ Misses 18053 18017 -36
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
zeertzjq
added a commit
to zeertzjq/neovim
that referenced
this pull request
Dec 18, 2021
…ting lines Problem: Cannot change the character displayed in non existing lines. Solution: Add the "eob" item to 'fillchars'. (closes vim/vim#7832, closes vim/vim#3820) vim/vim@a98f8a2 Nvim has already implemented this feature, so this just ports the tests and docs.
zeertzjq
added a commit
to zeertzjq/neovim
that referenced
this pull request
Dec 18, 2021
…ting lines Problem: Cannot change the character displayed in non existing lines. Solution: Add the "eob" item to 'fillchars'. (closes vim/vim#7832, closes vim/vim#3820) vim/vim@a98f8a2 Nvim has already implemented this feature, so this just ports the tests and docs.
zeertzjq
added a commit
to zeertzjq/neovim
that referenced
this pull request
Dec 18, 2021
…ting lines Problem: Cannot change the character displayed in non existing lines. Solution: Add the "eob" item to 'fillchars'. (closes vim/vim#7832, closes vim/vim#3820) vim/vim@a98f8a2 Nvim has already implemented this feature, so this just ports the tests and docs.
zeertzjq
added a commit
to zeertzjq/neovim
that referenced
this pull request
Dec 18, 2021
…ting lines Problem: Cannot change the character displayed in non existing lines. Solution: Add the "eob" item to 'fillchars'. (closes vim/vim#7832, closes vim/vim#3820) vim/vim@a98f8a2 Nvim has already implemented this feature, so this just ports the tests and docs.
zeertzjq
added a commit
to zeertzjq/neovim
that referenced
this pull request
Dec 19, 2021
…ting lines Problem: Cannot change the character displayed in non existing lines. Solution: Add the "eob" item to 'fillchars'. (closes vim/vim#7832, closes vim/vim#3820) vim/vim@a98f8a2 Nvim has already implemented this feature, so this just ports the tests and docs.
dundargoc
pushed a commit
to dundargoc/neovim
that referenced
this pull request
Dec 26, 2021
…ting lines Problem: Cannot change the character displayed in non existing lines. Solution: Add the "eob" item to 'fillchars'. (closes vim/vim#7832, closes vim/vim#3820) vim/vim@a98f8a2 Nvim has already implemented this feature, so this just ports the tests and docs.
meribold
added a commit
to meribold/dotfiles
that referenced
this pull request
Aug 10, 2023
This is easy now and works the same way in both Vim and Neovim. Some links: vim/vim#7832 vim/vim@a98f8a2 Some related commits: dc6d26a 6aca4b8 e623ccf
meribold
added a commit
to meribold/dotfiles
that referenced
this pull request
Aug 10, 2023
This is easy now and works the same way in both Vim and Neovim. Some links: neovim/neovim#4181 neovim/neovim#6351 vim/vim#3820 vim/vim#7832 vim/vim@a98f8a2 Some related commits: dc6d26a 6aca4b8 e623ccf
meribold
added a commit
to meribold/dotfiles
that referenced
this pull request
Aug 10, 2023
This is easy now and works the same way in both Vim and Neovim. Some links: neovim/neovim#4181 neovim/neovim#6351 vim/vim#3820 vim/vim#7832 vim/vim@a98f8a2 Some related commits: dc6d26a 6aca4b8 e623ccf
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.
Port the support for changing the tilde (~) character displayed at the end of the buffer.
This will address #3820.