Skip to content

Commit

Permalink
Add netbeans to the list
Browse files Browse the repository at this point in the history
According to the documentation, you can specify a line number using file:number syntax: http://wiki.netbeans.org/FaqCliOpen

> `netbeans Something.java:55`
  • Loading branch information
ferrybig committed Apr 5, 2019
1 parent f1523a6 commit f4451c2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/react-dev-utils/launchEditor.js
Expand Up @@ -131,6 +131,7 @@ function getArgumentsForLineNumber(
return [fileName + ':' + lineNumber + ':' + colNumber];
case 'wstorm':
case 'charm':
case 'netbeans':
return [fileName + ':' + lineNumber];
case 'notepad++':
return ['-n' + lineNumber, '-c' + colNumber, fileName];
Expand Down

0 comments on commit f4451c2

Please sign in to comment.