formatCodeCharToInlineCode top-level property

CharacterShortcutEvent formatCodeCharToInlineCode
final

Implementation

final CharacterShortcutEvent formatCodeCharToInlineCode =
    CharacterShortcutEvent(
  key: 'Format single code to inline code style',
  character: _codeChar,
  handler: (controller) => handleFormatByWrappingWithSingleCharacter(
    controller: controller,
    character: _codeChar,
    formatStyle: SingleCharacterFormatStyle.code,
  ),
);