From 839d1e180769b6b5e388cd0a9dd9327b651cdc00 Mon Sep 17 00:00:00 2001 From: Ubaldo Tiberi Date: Mon, 17 Jun 2024 10:44:20 +0200 Subject: [PATCH] Removed \ for linebreak --- plugin/replica.vim | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/plugin/replica.vim b/plugin/replica.vim index 2fb3c85..06c04de 100644 --- a/plugin/replica.vim +++ b/plugin/replica.vim @@ -69,30 +69,30 @@ endif if !exists('g:replica_jupyter_console_options') g:replica_jupyter_console_options = { - \ "python": "", - \ "julia": ""} + python: "", + julia: ""} endif # Dicts. Keys must be Vim filetypes var replica_kernels_default = { - \ "python": "python3", - \ "julia": "julia-1.8"} + python: "python3", + julia: "julia-1.8"} var replica_console_names_default = { - \ "python": "IPYTHON", - \ "julia": "JULIA"} + python: "IPYTHON", + julia: "JULIA"} var replica_cells_delimiters_default = { - \ "python": "# %%", - \ "julia": "# %%"} + python: "# %%", + julia: "# %%"} var replica_run_commands_default = { - \ "python": "run -i " .. g:replica_tmp_filename, - \ "julia": 'include("' .. g:replica_tmp_filename .. '")'} + python: "run -i " .. g:replica_tmp_filename, + julia: 'include("' .. g:replica_tmp_filename .. '")'} var replica_jupyter_console_options_default = { - \ "python": "", - \ "julia": ""} + python: "", + julia: ""} # User is allowed to change only replica_kernels and replica_cells_delimiters if exists('g:replica_kernels')