aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/keysets.lua
blob: 144c2526875958a51c47c3704d54a0ee718a3d62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
return {
  context = {
    "types";
  };
  set_extmark = {
    "id";
    "end_line";
    "end_col";
    "hl_group";
    "virt_text";
    "virt_text_pos";
    "virt_text_win_col";
    "virt_text_hide";
    "hl_eol";
    "hl_mode";
    "ephemeral";
    "priority";
    "right_gravity";
    "end_right_gravity";
    "virt_lines";
    "virt_lines_above";
    "virt_lines_leftcol";
  };
  keymap = {
    "noremap";
    "nowait";
    "silent";
    "script";
    "expr";
    "unique";
  };
  get_commands = {
    "builtin";
  };
  float_config = {
    "row";
    "col";
    "width";
    "height";
    "anchor";
    "relative";
    "win";
    "bufpos";
    "external";
    "focusable";
    "zindex";
    "border";
    "style";
    "noautocmd";
  };
  runtime = {
    "is_lua";
  };
  eval_statusline = {
    "winid";
    "maxwidth";
    "fillchar";
    "highlights";
    "use_tabline";
  };
}