Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/ddc_vim/deps.ts>op.helplang

Dark deno-powered completion framework for neovim/Vim
Very Popular
Go to Latest
variable op.helplang
import { op } from "https://deno.land/x/ddc_vim@v4.0.5/deps.ts";
const { helplang } = op;

Comma-separated list of languages. Vim will use the first language for which the desired help can be found. The English help will always be used as a last resort. You can add "en" to prefer English over another language, but that will only find tags that exist in that language and not in the English help. Example:

:set helplang=de,it

This will first search German, then Italian and finally English help files. When using CTRL-] and ":help!" in a non-English help file Vim will try to find the tag in the current language before using this option. See help-translated.

(default: messages language or empty)

only available when compiled with the +multi_lang feature

type

GlobalOption<string>