1

I'm using SublimeText3 with LaTeXTools for my LaTeX work and want it to insert a double-backslash+newline when I hit ctrl+enter. Like this:

asdf\\
foobar

I tried inserting the following into "Default (Linux).sublime-keymap":

{
    "keys": ["ctrl+enter"],
    "command": "insert_snippet",
    "args": {"contents": "\\\\\n"},
    "context":
        [
            {"key": "selector", "operator": "equal", "operand": "text.tex.latex"}
        ]
}

But what it creates on ctrl+enter is:

asdf\
foobar

Why is this and how can I solve this?

beesteak
  • 115

1 Answers1

1

Solution (thanks to Karan):

Insert into "Default (Linux).sublime-keymap":

{
    "keys": ["ctrl+enter"],
    "command": "insert_snippet",
    "args": {"contents": "\\\\\\\\\n"},
    "context":
        [
            {"key": "selector", "operator": "equal", "operand": "text.tex.latex"}
        ]
}
beesteak
  • 115