blob: d7a9e6f27b4b8473bb1e75174251cc352fff92ee [file] [log] [blame]
Skyler Grey35e8c882023-01-26 00:37:03 +00001fun! g:SetupCommandAlias(from, to)
2 exec 'cnoreabbrev <expr> '.a:from
3 \ .' ((getcmdtype() is# ":" && getcmdline() is# "'.a:from.'")'
4 \ .'? ("'.a:to.'") : ("'.a:from.'"))'
5endfun
6
7function g:Highlight(group, fg, bg)
8 exec ("autocmd ColorScheme onehalfdark highlight! " . a:group . " ctermfg=" . a:fg.cterm . " ctermbg=" . a:bg.cterm . " guifg=" . a:fg.gui . " guibg=" . a:bg.gui)
9endfunction
10