Skip to main content
Module

x/denops_std/option/mod.ts>makeencoding

📚 Standard module for denops.vim
Go to Latest
variable makeencoding
import { makeencoding } from "https://deno.land/x/denops_std@v4.1.7/option/mod.ts";

Encoding used for reading the output of external commands. When empty, encoding is not converted. This is used for :make, :lmake, :grep, :lgrep, :grepadd, :lgrepadd, :cfile, :cgetfile, :caddfile, :lfile, :lgetfile, and :laddfile.

This would be mostly useful when you use MS-Windows and set 'encoding' to "utf-8". If +iconv is enabled and GNU libiconv is used, setting 'makeencoding' to "char" has the same effect as setting to the system locale encoding. Example:

:set encoding=utf-8
:set makeencoding=char  " system locale is used

(default "")

type

{ get(denops: Denops): Promise<string>; set(denops: Denops, value: string): Promise<void>; reset(denops: Denops): Promise<void>; getGlobal(denops: Denops): Promise<string>; setGlobal(denops: Denops, value: string): Promise<void>; resetGlobal(denops: Denops): Promise<void>; getLocal(denops: Denops): Promise<string>; setLocal(denops: Denops, value: string): Promise<void>; resetLocal(denops: Denops): Promise<void>; }