我在Mac中使用PhpStorm
来编码,我想调试我的错误。我在终端中有一条消息来设置React Native工具的编辑器。
PRO TIP
When you see Red Box with stack trace, you can click any
stack frame to jump to the source file. The packager will launch your
editor of choice. It will first look at REACT_EDITOR environment
variable, then at EDITOR.
To set it up, you can add something like
export REACT_EDITOR=atom to your ~/.bashrc or ~/.zshrc depending on
which shell you use.
我已经将这些行添加到~/.bashrc中,但是当我点击错误时没有发生任何事情:
export PATH=$PATH:/usr/local/bin/pstorm
export REACT_EDITOR=pstorm
如何正确地将REACT_EDITOR
设置为PhpStorm
,以便当我单击错误时,它会跳转到我的代码?
2条答案
按热度按时间e3bfsja21#
webstorm 2023.1的UPD
只需添加到
~/.bashrc
或~/.zprofile
。以前版本webstorm的原始答案。
对于Mac OS,您需要添加到
~/.bashrc
或.zprofile
:Add export REACT_EDITOR="webstorm"
或pstorm
在尝试之前,不要忘记关闭所有终端窗口并重新启动react-native打包器。
创建打开WebStorm的快捷方式:
1.打开WebStorm
1.按
⇧
两次以打开搜索窗口1.键入“Create Command Line Launcher...”并按Enter键
1.单击确定x1c 0d1x
就是这样
默认情况下,
/usr/local/bin
应该在PATH环境变量中。您应该能够从shell中的任何位置运行webstorm。运行webstorm /usr/local/bin/webstorm
以测试命令。您可以在项目
node_modules/@react-native-community/cli-tools/build/launchEditor.js
中找到打开编辑器here或node_modules/@react-native-community/cli-tools/build/launchEditor.js
的代码e4eetjau2#
我通过创建符号链接解决了这个问题。