aboutsummaryrefslogtreecommitdiff
path: root/.vim
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2023-10-26 15:50:22 -0400
committertdro <tdro@users.noreply.github.com>2023-10-26 15:50:22 -0400
commitea8be06022749e610367d5ebd8c3fb8d955d6f93 (patch)
treeb5f81c69984a57c9438678aa2c56f74d6dcb63e6 /.vim
parent06b4c566cadc0d2f107c85b84a75af0502f8e9cd (diff)
downloaddotfiles-ea8be06022749e610367d5ebd8c3fb8d955d6f93.tar.gz
dotfiles-ea8be06022749e610367d5ebd8c3fb8d955d6f93.tar.bz2
dotfiles-ea8be06022749e610367d5ebd8c3fb8d955d6f93.zip
.vim/vimrc: Append single space at end of REPL command
Without this some shells have a return delay
Diffstat (limited to '.vim')
-rw-r--r--.vim/vimrc2
1 files changed, 1 insertions, 1 deletions
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), "\<cr>") . "\<cr>")
+ call term_sendkeys(g:terminal_buffer, join(getline(a:start, a:end), "\<cr>") . " " . "\<cr>")
endfunction
" Jump to line and column in the format 123:13