mirror of
https://github.com/dhruvasagar/vim-table-mode.git
synced 2025-11-08 11:03:47 -05:00
6 lines
106 B
VimL
6 lines
106 B
VimL
function! tablemode#logger#log(message)
|
|
if g:table_mode_verbose
|
|
echom a:message
|
|
endif
|
|
endfunction
|