Update 2026-01-25 09:38 OpenBSD/amd64-t14

This commit is contained in:
c0dev0id
2026-01-25 09:38:17 +01:00
parent 0769d7a789
commit 186dfa8096
1240 changed files with 189747 additions and 315946 deletions

View File

@@ -160,6 +160,20 @@ if !exists('g:undotree_HighlightSyntaxDel')
let g:undotree_HighlightSyntaxDel = "DiffDelete"
endif
" Signs to display in the gutter where the file has been modified
if !exists('g:undotree_SignAdded')
let g:undotree_SignAdded = "++"
endif
if !exists('g:undotree_SignChanged')
let g:undotree_SignChanged = "~~"
endif
if !exists('g:undotree_SignDeleted')
let g:undotree_SignDeleted = "--"
endif
if !exists('g:undotree_SignDeletedEnd')
let g:undotree_SignDeletedEnd = "-v"
endif
" Deprecates the old style configuration.
if exists('g:undotree_SplitLocation')
echo "g:undotree_SplitLocation is deprecated,
@@ -176,6 +190,21 @@ if !exists('g:undotree_CursorLine')
let g:undotree_CursorLine = 1
endif
" Set statusline
if !exists('g:undotree_StatusLine')
let g:undotree_StatusLine = 1
endif
" Ignored filetypes
if !exists('g:undotree_DisabledFiletypes')
let g:undotree_DisabledFiletypes = []
endif
" Ignored buftypes
if !exists('g:undotree_DisabledBuftypes')
let g:undotree_DisabledBuftypes = ['terminal', 'prompt', 'quickfix', 'nofile']
endif
" Define the default persistence undo directory if not defined in vim/nvim
" startup script.
if !exists('g:undotree_UndoDir')