Files

8 lines
207 B
VimL
Raw Permalink Normal View History

2024-05-07 16:38:40 -06:00
function EnsureTmuxSession()
call system("tmux new -ds " . g:escapeTmuxSession . " -c $HOME >/dev/null 2>&1")
endfunction
function FindGitRoot()
return finddir('.git/..', expand('%:p:h').';')
endfunction