Skip to main content
Module

x/ddc_vim/deps.ts>fn.getcmdline

Dark deno-powered completion framework for neovim/Vim
Latest
function fn.getcmdline
import { fn } from "https://deno.land/x/ddc_vim@v4.3.1/deps.ts";
const { getcmdline } = fn;

Return the current command-line. Only works when the command line is being edited, thus requires use of c_CTRL-\_e or c_CTRL-R_=. Example:

:cmap <F7> <C-\>eescape(getcmdline(), ' \')<CR>

Also see getcmdtype(), getcmdpos(), setcmdpos() and setcmdline(). Returns an empty string when entering a password or using inputsecret().

Returns

Promise<string>