fromChar static method
Implementation
static VimOperator? fromChar(String ch) => switch (ch) {
'd' => delete,
'c' => change,
'y' => yank,
'>' => indent,
'<' => unindent,
_ => null,
};
static VimOperator? fromChar(String ch) => switch (ch) {
'd' => delete,
'c' => change,
'y' => yank,
'>' => indent,
'<' => unindent,
_ => null,
};