Skip to main content
Module

x/ddc_vim/deps.ts>fn.byte2line

Dark deno-powered completion framework for neovim/Vim8
Go to Latest
function fn.byte2line
import { fn } from "https://deno.land/x/ddc_vim@v2.3.0/deps.ts";
const { byte2line } = fn;

Return the line number that contains the character at byte count {byte} in the current buffer. This includes the end-of-line character, depending on the 'fileformat' option for the current buffer. The first character has byte count one. Also see |line2byte()|, |go| and |:goto|. Can also be used as a |method|: GetOffset()->byte2line() {not available when compiled without the |+byte_offset| feature}

Parameters

denops: Denops
byte: number

Returns

Promise<number>