summaryrefslogtreecommitdiff
path: root/mut/neovim/pack/plugins/start/blink.cmp/lua/blink/cmp/sources/cmdline/constants.lua
blob: fd2ee8568f00148b82ba25207754ff15f410207c (plain)
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
return {
  help_commands = {
    'help',
    'hel',
    'he',
    'h',
  },
  file_commands = {
    'edit',
    'e',
    'read',
    'r',
    'write',
    'w',
    'saveas',
    'sav',
    'split',
    'sp',
    'vsplit',
    'vs',
    'tabedit',
    'tabe',
    'badd',
    'bad',
    'next',
    'n',
    'previous',
    'prev',
    'args',
    'source',
    'so',
    'find',
    'fin',
    'diffsplit',
    'diffs',
    'diffpatch',
    'diffp',
    'make',
  },
}