25 lines
1.2 KiB
VimL
Executable File
25 lines
1.2 KiB
VimL
Executable File
function CopyRight()
|
||
:call setline(1, "\/\/")
|
||
:call setline(2, "\/\/ Copyright (c) 2023 Suzhou Yige Technology Co., Ltd (EagleChip)")
|
||
:call setline(3, "\/\/ All Rights Reserved.")
|
||
:call setline(4, "\/\/")
|
||
:call setline(5, "\/\/ This software constitutes an unpublished work and contains")
|
||
:call setline(6, "\/\/ valuable proprietary information and trade secrets belonging")
|
||
:call setline(7, "\/\/ to EagleChip.")
|
||
:call setline(8, "\/\/")
|
||
:call setline(9, "\/\/ This software may not be used, copied, distributed, modified or")
|
||
:call setline(10, "\/\/ disclosed without specific prior written authorization from")
|
||
:call setline(11, "\/\/ EagleChip.")
|
||
:call setline(12, "\/\/")
|
||
:call setline(13, "\/\/ The copyright notice above does not evidence any actual or")
|
||
:call setline(14, "\/\/ intended publication of such software.")
|
||
:call setline(15, "\/\/ ")
|
||
:call setline(16, "\/\/ Description : Make a short description for your file")
|
||
:call setline(17, "\/\/")
|
||
:call setline(18, "\/\/ Revision :")
|
||
:call setline(19, "\/\/ Rev. Date Designer Description")
|
||
:call setline(20, "\/\/ 1.0 2022-1-15 Designer Initial version")
|
||
:call setline(21, "\/\/")
|
||
endfunction
|
||
|