winSetWidth method

Future<void> winSetWidth(
  1. Window window,
  2. int width
)

Implementation

Future<void> winSetWidth(Window window, int width) {
  return call('nvim_win_set_width', args: [
    window,
    width,
  ]);
}