keyboardShortcuts constant

Map<String, String> const keyboardShortcuts

Implementation

static const Map<String, String> keyboardShortcuts = {
  'Enter': 'Send message',
  'Shift+Enter': 'New line',
  'Ctrl+C': 'Cancel current operation',
  'Ctrl+L': 'Clear screen',
  'Up/Down': 'Navigate message history',
  'Tab': 'Autocomplete command or path',
  'Escape': 'Dismiss autocomplete / cancel',
  'Ctrl+D': 'Exit the application',
};