Skip to main content
Module

x/ddc_vim/deps.ts>op.ruler

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

Show the line and column number of the cursor position, separated by a comma. When there is room, the relative position of the displayed text in the file is shown on the far right: Top first line is visible Bot last line is visible All first and last line are visible 45% relative position in the file If 'rulerformat' is set, it will determine the contents of the ruler. Each window has its own ruler. If a window has a status line, the ruler is shown there. Otherwise it is shown in the last line of the screen. If the statusline is given by 'statusline' (i.e. not empty), this option takes precedence over 'ruler' and 'rulerformat'. If the number of characters displayed is different from the number of bytes in the text (e.g., for a TAB or a multibyte character), both the text column (byte number) and the screen column are shown, separated with a dash. For an empty line "0-1" is shown. For an empty buffer the line number will also be zero: "0,0-1". This option is reset when 'paste' is set and restored when 'paste' is reset. If you don't want to see the ruler all the time but want to know where you are, use "g CTRL-G" g_CTRL-G. NOTE: This option is reset when 'compatible' is set.

(default off, set in defaults.vim)

type

GlobalOption<boolean>