getCurrentWin method

Future<Window> getCurrentWin()

Implementation

Future<Window> getCurrentWin() {
  return call('nvim_get_current_win', args: [])
      .then<Window>((v) => v as Window);
}