From da55f621eb9c77d579b4353d78cc4c9bec39c4f3 Mon Sep 17 00:00:00 2001 From: Axel Navarro Date: Tue, 1 Feb 2022 22:07:41 -0300 Subject: [PATCH] webstorm: add page (#7727) --- pages/common/webstorm.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/common/webstorm.md diff --git a/pages/common/webstorm.md b/pages/common/webstorm.md new file mode 100644 index 0000000000..39d1e235b2 --- /dev/null +++ b/pages/common/webstorm.md @@ -0,0 +1,32 @@ +# webstorm + +> The JetBrains JavaScript IDE. +> More information: . + +- Open the current directory in WebStorm: + +`webstorm` + +- Open a specific directory in WebStorm: + +`webstorm {{path/to/directory}}` + +- Open specific files in the LightEdit mode: + +`webstorm -e {{path/to/file1 path/to/file2 ...}}` + +- Open and wait until done editing a specific file in the LightEdit mode: + +`webstorm --wait -e {{path/to/file}}` + +- Open a file with the cursor at the specific line: + +`webstorm --line {{line_number}} {{path/to/file}}` + +- Open and compare files (supports up to 3 files): + +`webstorm diff {{path/to/file1}} {{path/to/file2}}` + +- Open and perform a three-way merge: + +`webstorm merge {{path/to/left_file}} {{path/to/right_file}} {{path/to/target_file}}`