6 lines
862 B
VimL
Executable File
6 lines
862 B
VimL
Executable File
function InsertCopyRight()
|
||
setlocal formatoptions-=r
|
||
let copyRight = ['//', '// Copyright (c) 2023 Suzhou Yige Technology Co., Ltd (EagleChip)', '// All Rights Reserved.', '// ', '// This software constitutes an unpublished work and contains', '// valuable proprietary information and trade secrets belonging', '// to EagleChip.', '// ', '// This software may not be used, copied, distributed, modified or', '// disclosed without specific prior written authorization from', '// EagleChip.', '// ', '// The copyright notice above does not evidence any actual or', '// intended publication of such software.', '// ', '// Description : Make a short description for your file', '// ', '// Revision :', '// Rev. Date Designer Description', '// 1.0 2022-1-15 Designer Initial version', '// ']
|
||
return join(copyRight, "\n")
|
||
endfunction
|