vim-patch:c363ca1: runtime(netrw): change indent size from 1 to 2 (#31648)

closes: vim/vim#16248

c363ca1ecd

Co-authored-by: Luca Saccarola <github.e41mv@aleeas.com>
This commit is contained in:
zeertzjq 2024-12-20 11:33:05 +08:00 committed by GitHub
parent 889f9a0c5d
commit 39781be14b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8517 additions and 8516 deletions

View File

@ -41,6 +41,7 @@
" 2024 Dec 04 by Vim Project: do not detach for gvim (#16168)
" 2024 Dec 08 by Vim Project: check the first arg of netrw_browsex_viewer for being executable (#16185)
" 2024 Dec 12 by Vim Project: do not pollute the search history (#16206)
" 2024 Dec 19 by Vim Project: change style (#16248)
" }}}
" Former Maintainer: Charles E Campbell
" GetLatestVimScripts: 1075 1 :AutoInstall: netrw.vim
@ -5313,7 +5314,6 @@ fun! netrw#CheckIfRemote(...)
else
let curfile= expand("%")
endif
" Ignore terminal buffers
if &buftype ==# 'terminal'
return 0
@ -11973,4 +11973,4 @@ unlet s:keepcpo
" ===============
" Modelines: {{{1
" ===============
" vim:ts=8 fdm=marker
" vim:ts=8 sts=2 sw=2 et fdm=marker

View File

@ -7,6 +7,7 @@
" 2024 Oct 27 by Vim Project: cleanup gx mapping
" 2024 Oct 28 by Vim Project: further improvements
" 2024 Oct 31 by Vim Project: use autoloaded functions
" 2024 Dec 19 by Vim Project: change style (#16248)
" Former Maintainer: Charles E Campbell
" GetLatestVimScripts: 1075 1 :AutoInstall: netrw.vim
" Copyright: Copyright (C) 1999-2021 Charles E. Campbell {{{1
@ -230,4 +231,4 @@ endfun
" Modelines And Restoration: {{{1
let &cpo= s:keepcpo
unlet s:keepcpo
" vim:ts=8 fdm=marker
" vim:ts=8 sts=2 sw=2 et fdm=marker