forked from x/ContextOS
173 lines
5.5 KiB
VimL
173 lines
5.5 KiB
VimL
" 变量定义
|
||
func! ShyDefine(name, value)
|
||
if !exists("name") | exec "let " . a:name . " = \"" . a:value . "\"" | endif
|
||
endfunc
|
||
|
||
" 输出日志
|
||
" call ShyDefine("g:ShyLog", "/dev/null")
|
||
call ShyDefine("g:ShyLog", "shy.log")
|
||
fun! ShyLog(...)
|
||
call writefile([strftime("%Y-%m-%d %H:%M:%S ") . join(a:000, " ")], g:ShyLog, "a")
|
||
endfun
|
||
command -nargs=+ ShyLog call writefile([strftime("%Y-%m-%d %H:%M:%S ") . join([<f-args>], " ")], g:ShyLog, "a")
|
||
|
||
" 后端通信
|
||
call ShyDefine("g:ctx_sid", "")
|
||
call ShyDefine("g:ctx_url", (len($ctx_dev) > 1? $ctx_dev: "http://127.0.0.1:9020") . "/code/vim")
|
||
fun! ShySend(arg)
|
||
if has_key(a:arg, "sub") && a:arg["sub"] != ""
|
||
let temp = tempname()
|
||
call writefile(split(a:arg["sub"], "\n"), temp, "b")
|
||
let a:arg["sub"] = "@" . temp
|
||
endif
|
||
|
||
let a:arg["buf"] = bufname("%")
|
||
let a:arg["sid"] = g:ctx_sid
|
||
let a:arg["pwd"] = getcwd()
|
||
let args = ""
|
||
for k in sort(keys(a:arg))
|
||
let args = args . " -F '" . k . "=" . a:arg[k] . "' "
|
||
endfor
|
||
return system("curl -s " . g:ctx_url . args . " 2>/dev/null")
|
||
endfun
|
||
fun! ShySends(...)
|
||
let args = {}
|
||
if len(a:000) > 0 | let args["cmd"] = a:000[0] | endif
|
||
if len(a:000) > 1 | let args["arg"] = a:000[1] | endif
|
||
if len(a:000) > 2 | let args["sub"] = a:000[2] | endif
|
||
return ShySend(args)
|
||
endfun
|
||
|
||
" 用户登录
|
||
fun! ShyLogout()
|
||
if g:ctx_sid == "" | return | endif
|
||
call ShySends("logout")
|
||
endfun
|
||
fun! ShyLogin()
|
||
let g:ctx_sid = ShySend({"cmd": "login", "share": $ctx_share, "pid": getpid(), "pane": $TMUX_PANE, "hostname": hostname(), "username": $USER})
|
||
endfun
|
||
call ShyLogin()
|
||
|
||
" 收藏列表
|
||
fun! ShyFavor()
|
||
if !exists("g:favor_tab") | let g:favor_tab = "" | endif
|
||
if !exists("g:favor_note") | let g:favor_note = "" | endif
|
||
let g:favor_tab = input("tab: ", g:favor_tab)
|
||
let g:favor_note = input("note: ", g:favor_note)
|
||
call ShySend({"cmd": "favor", "tab": g:favor_tab, "note": g:favor_note, "arg": getline("."), "line": getpos(".")[1], "col": getpos(".")[2]})
|
||
endfun
|
||
fun! ShyFavors()
|
||
let res = split(ShySend({"cmd": "favor", "tab": input("tab: ")}), "\n")
|
||
let page = "" | let note = ""
|
||
for i in range(0, len(res)-1, 2)
|
||
if res[i] != page
|
||
if note != "" | lexpr note | lopen | let note = "" | endif
|
||
execute exists(":TabooOpen")? "TabooOpen " . res[i]: "tabnew"
|
||
endif
|
||
let page = res[i] | let note .= res[i+1] . "\n"
|
||
endfor
|
||
if note != "" | lexpr note | lopen | let note = "" | endif
|
||
endfun
|
||
|
||
" 数据同步
|
||
fun! ShySync(target)
|
||
if bufname("%") == "ControlP" | return | end
|
||
|
||
if a:target == "read" || a:target == "write"
|
||
call ShySend({"cmd": a:target, "arg": expand("<afile>")})
|
||
elseif a:target == "exec"
|
||
call ShySend({"cmd": a:target, "arg": getcmdline()})
|
||
elseif a:target == "insert"
|
||
call ShySend({"cmd": a:target, "sub": getreg("."), "row": line("."), "col": col(".")})
|
||
else
|
||
let cmd = {"bufs": "buffers", "regs": "registers", "marks": "marks", "tags": "tags", "fixs": "clist"}
|
||
call ShySend({"cmd": "sync", "arg": a:target, "sub": execute(cmd[a:target])})
|
||
endif
|
||
endfun
|
||
fun! ShyCheck(target)
|
||
if a:target == "cache"
|
||
call ShySync("bufs")
|
||
call ShySync("regs")
|
||
call ShySync("marks")
|
||
call ShySync("tags")
|
||
elseif a:target == "fixs"
|
||
let l = len(getqflist())
|
||
if l > 0
|
||
execute "copen " . (l > 10? 10: l + 1)
|
||
call ShySync("fixs")
|
||
else
|
||
cclose
|
||
end
|
||
end
|
||
endfun
|
||
|
||
" 任务列表
|
||
fun! ShyTask()
|
||
call ShySend({"cmd": "tasklet", "arg": input("target: "), "sub": input("detail: ")})
|
||
endfun
|
||
|
||
" 标签列表
|
||
fun! ShyGrep(word)
|
||
if !exists("g:grep_dir") | let g:grep_dir = "./" | endif
|
||
let g:grep_dir = input("dir: ", g:grep_dir, "file")
|
||
execute "grep -rn --exclude tags --exclude '*.tags' '\<" . a:word . "\>' " . g:grep_dir
|
||
endfun
|
||
fun! ShyTag(word)
|
||
execute "tag " . a:word
|
||
endfun
|
||
|
||
" 输入转换
|
||
fun! ShyTrans(code)
|
||
return split(ShySend({"cmd": "trans", "arg": a:code, "pre": getline("."), "row": line("."), "col": col(".")}), "\n")
|
||
endfun
|
||
|
||
fun! ShyInput()
|
||
call ShyLog("input", v:char, line("."), col("."))
|
||
endfun
|
||
|
||
" 输入补全
|
||
fun! ShyComplete(firststart, base)
|
||
if a:firststart | let line = getline('.') | let start = col('.') - 1
|
||
" 命令位置
|
||
if match(trim(line), "ice ") == 0 | return match(line, "ice ") | endif
|
||
" 符号位置
|
||
call ShyLog("what", line[start-1], line[start-1] !~ '\a')
|
||
if line[start-1] !~ '\a' | return start - 1 | end
|
||
" 单词位置
|
||
while start > 0 && line[start - 1] =~ '\a' | let start -= 1 | endwhile
|
||
return start
|
||
endif
|
||
|
||
" 符号转换
|
||
if a:base == "," | return [",", ","] | end
|
||
if a:base == "." | return ["。", "."] | end
|
||
" 单词转换
|
||
return ShyTrans(a:base)
|
||
endfun
|
||
set completefunc=ShyComplete
|
||
|
||
" 帮助信息
|
||
fun! ShyHelp()
|
||
echo ShySend({"cmd": "help"})
|
||
endfun
|
||
|
||
" 事件回调
|
||
autocmd! VimLeave * call ShyLogout()
|
||
autocmd! BufReadPost * call ShySync("bufs")
|
||
autocmd! BufReadPost * call ShySync("read")
|
||
autocmd! BufWritePre * call ShySync("write")
|
||
autocmd! CmdlineLeave * call ShySync("exec")
|
||
autocmd! QuickFixCmdPost * call ShyCheck("fixs")
|
||
autocmd! InsertLeave * call ShySync("insert")
|
||
autocmd! InsertCharPre * call ShyInput()
|
||
|
||
" 按键映射
|
||
nnoremap <C-G><C-G> :call ShyGrep(expand("<cword>"))<CR>
|
||
nnoremap <C-G><C-R> :call ShyCheck("cache")<CR>
|
||
nnoremap <C-G><C-F> :call ShyFavor()<CR>
|
||
nnoremap <C-G>f :call ShyFavors()<CR>
|
||
nnoremap <C-G><C-T> :call ShyTask()<CR>
|
||
inoremap <C-K> <C-X><C-U>
|
||
vnoremap <C-K> :call ShyTrans()
|
||
|