microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
f16656e963fb76d68e7e5310a3661326540b54f2

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

scripts/atom.cmd

17lines · modeblame

514df4f4Patricio Beltran10 years ago1:: This script is called 'atom' to surpass the react-native
2:: editor selection. It has nothing to do with the atom editor.
3:: It can be safetly removed when the PR to support vscode in
4:: react native gets accepted:
5:: https://github.com/facebook/react-native/pull/7757
6::
7:: Usage:
8:: ../path/atom.cmd filename:filenumber
9
10:: Windows
11@echo off
12
13IF [%1] == [] (
14echo "Missing filename."
15exit 1
16)
17node "%~dp0..\out\extension\openFileAtLocation.js" "%1"