Skip to main content
Module

x/dpp_vim/deps.ts>fn.synIDtrans

Dark powered plugin manager for Vim/neovim
Latest
function fn.synIDtrans
import { fn } from "https://deno.land/x/dpp_vim@v0.2.0/deps.ts";
const { synIDtrans } = fn;

The result is a Number, which is the translated syntax ID of {synID}. This is the syntax group ID of what is being used to highlight the character. Highlight links given with ":highlight link" are followed.

Returns zero on error.

Can also be used as a method:

:echo synID(line("."), col("."), 1)->synIDtrans()->synIDattr("fg")

Parameters

denops: Denops
synID: unknown

Returns

Promise<number>