如何将React_Editor设置为PhpStorm,以便当您单击错误时,它会跳转到代码?

ivqmmu1c  于 2023-04-12  发布在  React
关注(0)|答案(2)|浏览(105)

我在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,以便当我单击错误时,它会跳转到我的代码?

e3bfsja2

e3bfsja21#

webstorm 2023.1的UPD

只需添加到~/.bashrc~/.zprofile

export REACT_EDITOR="webstorm"
export PATH="/Applications/WebStorm.app/Contents/MacOS:$PATH"

以前版本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中找到打开编辑器herenode_modules/@react-native-community/cli-tools/build/launchEditor.js的代码

e4eetjau

e4eetjau2#

我通过创建符号链接解决了这个问题。

sudo ln -s /Applications/WebStorm.app/Contents/MacOS/webstorm /usr/local/bin/webstorm

相关问题