From ea8be06022749e610367d5ebd8c3fb8d955d6f93 Mon Sep 17 00:00:00 2001 From: tdro Date: Thu, 26 Oct 2023 15:50:22 -0400 Subject: .vim/vimrc: Append single space at end of REPL command Without this some shells have a return delay --- .vim/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.vim') diff --git a/.vim/vimrc b/.vim/vimrc index 00a5551..6c3706c 100644 --- a/.vim/vimrc +++ b/.vim/vimrc @@ -254,7 +254,7 @@ function s:repl(start, end, language) exe 'sbuffer ' . g:terminal_buffer wincmd p endif - call term_sendkeys(g:terminal_buffer, join(getline(a:start, a:end), "\") . "\") + call term_sendkeys(g:terminal_buffer, join(getline(a:start, a:end), "\") . " " . "\") endfunction " Jump to line and column in the format 123:13 -- cgit v1.2.3