replaceTermcodes method

Future<String> replaceTermcodes(
  1. String str,
  2. bool from_part,
  3. bool do_lt,
  4. bool special,
)

Implementation

Future<String> replaceTermcodes(
    String str, bool from_part, bool do_lt, bool special) {
  return call('nvim_replace_termcodes', args: [
    str,
    from_part,
    do_lt,
    special,
  ]).then<String>((v) => v as String);
}