Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096
Basic
fun! GbSyncLines(is_ow2bw) | |
let l:ow = getbufvar(+expand('<abuf>'), 'origWindow') | |
let l:bw = getbufvar(+expand('<abuf>'), 'blameWindow') | |
let l:origLine=line('.', win_getid(l:ow)) | |
let l:blameLine=line('.', win_getid(l:bw)) | |
if a:is_ow2bw == 1 | |
eval win_execute(win_getid(l:bw), "windo call cursor(" . l:origLine . ", 0)") | |
else | |
eval win_execute(win_getid(l:ow), "windo call cursor(" . l:blameLine . ", 0)") | |
endif |