From 74d10951628f64eda88551246911fe1b54bc718b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Cot=C3=A9?= Date: Sun, 22 Jan 2023 05:13:26 -0600 Subject: [PATCH] Update Sublime Text external editor arguments (#6644) --- tutorials/editor/external_editor.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tutorials/editor/external_editor.rst b/tutorials/editor/external_editor.rst index 572a32f8b..1c4064c07 100644 --- a/tutorials/editor/external_editor.rst +++ b/tutorials/editor/external_editor.rst @@ -35,7 +35,7 @@ Some example Exec Flags for various editors include: +=====================+=====================================================+ | Geany/Kate | ``{file} --line {line} --column {col}`` | +---------------------+-----------------------------------------------------+ -| Atom/Sublime Text | ``{file}:{line}`` | +| Atom | ``{file}:{line}`` | +---------------------+-----------------------------------------------------+ | JetBrains Rider | ``{project} --line {line} {file}`` | +---------------------+-----------------------------------------------------+ @@ -45,6 +45,8 @@ Some example Exec Flags for various editors include: +---------------------+-----------------------------------------------------+ | Emacs | ``emacs +{line}:{col} {file}`` | +---------------------+-----------------------------------------------------+ +| Sublime Text | ``{project} {file}:{line}:{column}`` | ++---------------------+-----------------------------------------------------+ .. note:: For Visual Studio Code, you will have to point to the ``code.cmd`` file. For Emacs, you can call ``emacsclient`` instead of ``emacs`` if