From ca5e7a3ab7f838bf97255c0787929825a7bd78ad Mon Sep 17 00:00:00 2001 From: Dillon Flohr Date: Wed, 10 Apr 2019 15:56:15 -0500 Subject: [PATCH] Escaping double dashes. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Escaping the double dashes in this file to prevent Sphinx from turning them to a long bar "–" in the docs. --- getting_started/editor/external_editor.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/getting_started/editor/external_editor.rst b/getting_started/editor/external_editor.rst index 74955297f..732a0ce07 100644 --- a/getting_started/editor/external_editor.rst +++ b/getting_started/editor/external_editor.rst @@ -31,11 +31,11 @@ Some example Exec Flags for various editors include: +---------------------+-----------------------------------------------------+ | Editor | Exec Flags | +=====================+=====================================================+ -| Geany/Kate | {file} --line {line} --column {col} | +| Geany/Kate | {file} -\-line {line} -\-column {col} | +---------------------+-----------------------------------------------------+ | Atom/Sublime Text | {file}:{line} | +---------------------+-----------------------------------------------------+ -| JetBrains Rider | --line {line} {file} | +| JetBrains Rider | -\-line {line} {file} | +---------------------+-----------------------------------------------------+ -| Visual Studio Code | {project} --goto {file}:{line}:{col} | +| Visual Studio Code | {project} -\-goto {file}:{line}:{col} | +---------------------+-----------------------------------------------------+