mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-04-21 00:42:02 +03:00
Merge 2202597be8
into 1c5df1ee32
This commit is contained in:
commit
1c99b32ce4
|
@ -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