openWin method

Future<Window> openWin(
  1. Buffer buffer,
  2. bool enter,
  3. Map config
)

Implementation

Future<Window> openWin(
    Buffer buffer, bool enter, Map<dynamic, dynamic> config) {
  return call('nvim_open_win', args: [
    buffer,
    enter,
    config,
  ]).then<Window>((v) => v as Window);
}