microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
40e4b1775df7e167b59e5e59e86c7cfae77784dc

Branches

Tags

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

Clone

HTTPS

Download ZIP

scripts/atom.cmd

17lines · modepreview

:: This script is called 'atom' to surpass the react-native
:: editor selection. It has nothing to do with the atom editor.
:: It can be safetly removed when the PR to support vscode in
:: react native gets accepted:
:: https://github.com/facebook/react-native/pull/7757
::
:: Usage:
:: ../path/atom.cmd filename:filenumber

:: Windows
@echo off

IF [%1] == [] (
   echo "Missing filename."
   exit 1
)
node "%~dp0..\out\extension\openFileAtLocation.js" "%1"