Skip to main content
Module

x/denops_std/function/buffer.ts>bufwinnr

📚 Standard module for denops.vim
Go to Latest
function bufwinnr
import { bufwinnr } from "https://deno.land/x/denops_std@v4.1.3/function/buffer.ts";

The result is a Number, which is the number of the first window associated with buffer {expr}. For the use of {expr}, see |bufname()| above. If buffer {expr} doesn't exist or there is no such window, -1 is returned. Example: >

echo "A window containing buffer 1 is " . (bufwinnr(1))

The number can be used with |CTRL-W_w| and ":wincmd w" |:wincmd|. Only deals with the current tab page.

Parameters

denops: Denops
expr: string | number

Returns

Promise<number>