Skip to content

Commit

Permalink
Merge pull request #85 from graphql/multiple-keymap
Browse files Browse the repository at this point in the history
Enable extra key mappings for typeahead
  • Loading branch information
leebyron committed Jan 27, 2016
2 parents ad5881d + b12168d commit af0afe8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/QueryEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ export class QueryEditor extends React.Component {
extraKeys: {
'Cmd-Space': () => this.editor.showHint({ completeSingle: true }),
'Ctrl-Space': () => this.editor.showHint({ completeSingle: true }),
'Alt-Space': () => this.editor.showHint({ completeSingle: true }),
'Shift-Space': () => this.editor.showHint({ completeSingle: true }),

// Editor improvements
'Ctrl-Left': 'goSubwordLeft',
Expand Down

0 comments on commit af0afe8

Please sign in to comment.