mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-04-06 09:44:13 +03:00
Merge 2202597be8
into 4a8fbc675a
This commit is contained in:
commit
a654da43c5
|
@ -84,6 +84,9 @@ function openInEditor(editor: string, path: string, stackFrame: StackFrame) {
|
|||
case 'idea':
|
||||
url = `${editor}://open?file=${projectPath}${filePath}&line=${line}&column=${column}`;
|
||||
break;
|
||||
case 'jetbrains_server':
|
||||
url = `http://localhost:63342/api/file/?file=${filePath}&line=${line}`;
|
||||
break;
|
||||
default:
|
||||
// sublime, emacs, macvim, textmate + custom like https://github.com/eclemens/atom-url-handler
|
||||
url = `${editor}://open/?url=file://${projectPath}${filePath}&line=${line}&column=${column}`;
|
||||
|
|
Loading…
Reference in New Issue
Block a user