function isTerminalEditor()

in packages/relay-devtools-core/src/launchEditor.js [15:24]


function isTerminalEditor(editor: string): boolean {
  switch (editor) {
    case 'vim':
    case 'emacs':
    case 'nano':
      return true;
    default:
      return false;
  }
}