mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-26 04:00:29 +08:00
66 lines
1.9 KiB
VimL
66 lines
1.9 KiB
VimL
"=============================================================================
|
|
" utils.vim --- utils function for neoformat
|
|
" Copyright (c) 2016-2023 Wang Shidong & Contributors
|
|
" Author: Wang Shidong < wsdjeg@outlook.com >
|
|
" URL: https://spacevim.org
|
|
" License: GPLv3
|
|
"=============================================================================
|
|
|
|
|
|
let s:LOGGER = SpaceVim#logger#derive('neoformat')
|
|
let s:NT = SpaceVim#api#import('notify')
|
|
let s:formatopt = SpaceVim#layers#format#get_format_option()
|
|
let s:NT.notify_max_width = s:formatopt.format_notify_width
|
|
let s:NT.timeout = s:formatopt.format_notify_timeout
|
|
|
|
|
|
function! neoformat#utils#log(msg) abort
|
|
call s:LOGGER.info(a:msg)
|
|
endfunction
|
|
|
|
function! neoformat#utils#log_file_content(path) abort
|
|
if neoformat#utils#should_be_verbose()
|
|
return s:better_echo(readfile(a:path))
|
|
endif
|
|
endfunction
|
|
|
|
function! neoformat#utils#warn(msg) abort
|
|
call s:LOGGER.warn(a:msg)
|
|
endfunction
|
|
|
|
function! neoformat#utils#msg(msg) abort
|
|
if exists('g:neoformat_only_msg_on_error') && g:neoformat_only_msg_on_error
|
|
return
|
|
endif
|
|
return s:better_echo(a:msg)
|
|
endfunction
|
|
|
|
function! neoformat#utils#should_be_verbose() abort
|
|
if !exists('g:neoformat_verbose')
|
|
let g:neoformat_verbose = 0
|
|
endif
|
|
return &verbose || g:neoformat_verbose
|
|
endfunction
|
|
|
|
function! s:better_echo(msg) abort
|
|
if type(a:msg) != type('')
|
|
call s:LOGGER.debug('Neoformat: ' . string(a:msg))
|
|
call s:NT.notify('Neoformat: ' . string(a:msg))
|
|
else
|
|
call s:LOGGER.debug('Neoformat: ' . a:msg)
|
|
call s:NT.notify('Neoformat: ' . a:msg)
|
|
endif
|
|
endfunction
|
|
|
|
function! neoformat#utils#var(name) abort
|
|
return neoformat#utils#var_default(a:name, 0)
|
|
endfunction
|
|
|
|
function! neoformat#utils#var_default(name, default) abort
|
|
if exists('b:' . a:name)
|
|
return get(b:, a:name)
|
|
endif
|
|
|
|
return get(g:, a:name, a:default)
|
|
endfunction
|