formatDoubleUnderscoresToBold top-level property

CharacterShortcutEvent formatDoubleUnderscoresToBold
final

Implementation

final CharacterShortcutEvent formatDoubleUnderscoresToBold =
    CharacterShortcutEvent(
  key: 'Format double underscores to bold',
  character: _underscore,
  handler: (controller) => handleFormatByWrappingWithDoubleCharacter(
    controller: controller,
    character: _underscore,
    formatStyle: DoubleCharacterFormatStyle.bold,
  ),
);