Skip to content

Commit

Permalink
Removed \ for linebreak
Browse files Browse the repository at this point in the history
  • Loading branch information
ubaldot committed Jun 17, 2024
1 parent 1623571 commit 839d1e1
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions plugin/replica.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 839d1e1

Please sign in to comment.