Skip to content

Commit

Permalink
Merge pull request #1287 from moosetechnology/1285-MiSourceCode-exter…
Browse files Browse the repository at this point in the history
…nal-editors-block-mooseide

correcting MiSourceCodeIssue 1285
  • Loading branch information
NicolasAnquetil authored Dec 30, 2024
2 parents 4aafa6c + cd22ce5 commit 4e17c2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MooseIDE-Famix/MiExternalEditorOpenner.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ MiExternalEditorOpenner >> privShellExecute: lpOperation file: lpFile parameters

{ #category : #'private - ffi' }
MiExternalEditorOpenner >> visitMacOS: aPlatform [
LibC runCommand: ('{1} "{2}"' format: {command . pathString})
LibC runCommand: ('{1} "{2}" &' format: {command . pathString})
]

{ #category : #'private - ffi' }
MiExternalEditorOpenner >> visitUnix: aPlatform [
LibC runCommand: ('{1} "{2}"' format: {command . pathString})
LibC runCommand: ('{1} "{2}" &' format: {command . pathString})
]

{ #category : #'private - ffi' }
Expand Down

0 comments on commit 4e17c2a

Please sign in to comment.