Skip to main content
Module

x/denops_std/buffer/mod.ts>append

📚 Standard module for denops.vim
Go to Latest
function append
import { append } from "https://deno.land/x/denops_std@v6.1.0/buffer/mod.ts";

Append content under the current cursor position or given lnum of the buffer

import type { Denops } from "https://deno.land/x/denops_std@v6.1.0/mod.ts";
import * as fn from "https://deno.land/x/denops_std@v6.1.0/function/mod.ts";
import { append, open } from "https://deno.land/x/denops_std@v6.1.0/buffer/mod.ts";

export async function main(denops: Denops): Promise<void> {
  await open(denops, "README.md");
  const bufnr = await fn.bufnr(denops);
  // Append the content under the cursor position of the `bufnr` buffer
  await append(denops, bufnr, ["Hello", "World"]);
}

It temporary change modified, modifiable, and foldmethod options to append the content of the buffer buffer without unmodifiable error or so on.

Parameters

denops: Denops
bufnr: number
repl: string[]
optional
options: AppendOptions = [UNSUPPORTED]

Returns

Promise<void>