fix: default textarea EndOfBufferCharacter should be ' ' (#510)

This commit is contained in:
Garrett Martin
2024-05-23 17:37:59 -04:00
committed by GitHub
parent 613d1cb46e
commit 620ca7dfa9
2 changed files with 147 additions and 147 deletions
+1 -1
View File
@@ -259,7 +259,7 @@ func New() Model {
FocusedStyle: focusedStyle,
BlurredStyle: blurredStyle,
cache: memoization.NewMemoCache[line, [][]rune](defaultMaxHeight),
EndOfBufferCharacter: '~',
EndOfBufferCharacter: ' ',
ShowLineNumbers: true,
Cursor: cur,
KeyMap: DefaultKeyMap,