⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 debug.vim

📁 vim的自动配置文件
💻 VIM
字号:
" Description: Omni completion debug functions" Maintainer:  Vissale NEANG" Last Change: 25 jun 2006let s:CACHE_DEBUG_TRACE = []" Start debug, clear the debug filefunction! omni#common#debug#Start()    let s:CACHE_DEBUG_TRACE = []    call extend(s:CACHE_DEBUG_TRACE, ['============ Debug Start ============'])    call writefile(s:CACHE_DEBUG_TRACE, "Omni.dbg")endfunc" End debug, write to debug filefunction! omni#common#debug#End()    call extend(s:CACHE_DEBUG_TRACE, ["============= Debug End ============="])    call extend(s:CACHE_DEBUG_TRACE, [""])    call writefile(s:CACHE_DEBUG_TRACE, "Omni.dbg")endfunc" Debug trace functionfunction! omni#common#debug#Trace(szFuncName, ...)    let szTrace = a:szFuncName    let paramNum = a:0    if paramNum>0        let szTrace .= ':'    endif    for i in range(paramNum)        let szTrace = szTrace .' ('. string(eval('a:'.string(i+1))).')'    endfor    call extend(s:CACHE_DEBUG_TRACE, [szTrace])endfunc

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -