Skip to content

Commit

Permalink
🎨style: 改行コードの違いを分かりやすく…
Browse files Browse the repository at this point in the history
  • Loading branch information
utubo committed Oct 30, 2024
1 parent 1464c68 commit d71a373
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vim/autoload/vimrc/lazyload.vim
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ if b || w.bytes !=# 0
add(e, ['Constant', printf('%dL, %dB', w.bytes ==# 0 ? 0 : line('$'), w.bytes)])
add(e, ['Normal', ' '])
endif
add(e, ['MoreMsg', &ff])
add(e, [&ff ==# 'unix' ? 'MoreMsg' : 'WarningMsg', &ff])
add(e, ['Normal', ' '])
const f = empty(&fenc) ? &enc : &fenc
add(e, [f ==# 'utf-8' ? 'MoreMsg' : 'WarningMsg', f])
Expand Down
2 changes: 1 addition & 1 deletion src/.vim/autoload/vimrc/lazyload.src.vim
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ def ShowBufInfo(event: string = '')
add(msg, ['Constant', printf('%dL, %dB', w.bytes ==# 0 ? 0 : line('$'), w.bytes)])
add(msg, ['Normal', ' '])
endif
add(msg, ['MoreMsg', &ff])
add(msg, [&ff ==# 'unix' ? 'MoreMsg' : 'WarningMsg', &ff])
add(msg, ['Normal', ' '])
const enc = empty(&fenc) ? &encoding : &fenc
add(msg, [enc ==# 'utf-8' ? 'MoreMsg' : 'WarningMsg', enc])
Expand Down

0 comments on commit d71a373

Please sign in to comment.