aboutsummaryrefslogtreecommitdiff
path: root/src/console/actions/index.js
blob: b394179044188977bbc761f5ffe064a6c44c7a53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
export default {
  // console commands
  CONSOLE_HIDE: 'console.hide',
  CONSOLE_SHOW_COMMAND: 'console.show.command',
  CONSOLE_SHOW_ERROR: 'console.show.error',
  CONSOLE_SHOW_INFO: 'console.show.info',
  CONSOLE_HIDE_COMMAND: 'console.hide.command',
  CONSOLE_SET_CONSOLE_TEXT: 'console.set.command',
  CONSOLE_SET_COMPLETIONS: 'console.set.completions',
  CONSOLE_COMPLETION_NEXT: 'console.completion.next',
  CONSOLE_COMPLETION_PREV: 'console.completion.prev',
  CONSOLE_SHOW_FIND: 'console.show.find',
};