原因となるvimrcにコードを追加する
"E488: Trailing characters: <c-r>=12+34<cr>"
いつも現れる
<c-r>=12+34<cr>
そこで何が起こっているのですか?
私の元のコード:
function! CleverTab()
if strpart( getline('.'), 0, col('.')-1 ) =~ '^\s*$'
return "\<Tab>"
endif
if pumvisible()
return "\<C-N>"
endif
let s:codecompl = CodeComplete()
"<c-r>=s:codecompl<cr>
<c-r>=12+34<cr>
"exec " " .s:codecompl. "\<enter>"."."
"if g:swith_region_flag == 1
" return SwitchRegion()
"else return s:codecompl
return ''
endfunction