diff options
author | Louie Shprung <lshprung@scu.edu> | 2022-10-10 13:18:28 -0700 |
---|---|---|
committer | Louie Shprung <lshprung@scu.edu> | 2022-10-10 13:18:28 -0700 |
commit | 9b3ff364b91f8e481904669c082821d1792bd3b1 (patch) | |
tree | 4df96c09ef6bdb4c31bf6358344087939bdf9f4c /lua/user/cmp.lua | |
parent | 2b5a85dc976377afb9a87b3756e931d07bb5719c (diff) |
Changed cmp select from <CR> to <C-a>
Diffstat (limited to 'lua/user/cmp.lua')
-rw-r--r-- | lua/user/cmp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/user/cmp.lua b/lua/user/cmp.lua index d8f0c33..cd80a7d 100644 --- a/lua/user/cmp.lua +++ b/lua/user/cmp.lua @@ -70,7 +70,7 @@ cmp.setup { }, -- Accept currently selected item. If none selected, `select` first item. -- Set `select` to `false` to only confirm explicitly selected items. - ["<CR>"] = cmp.mapping.confirm { select = false }, + ["<C-a>"] = cmp.mapping.confirm { select = false }, --[[ ["<Tab>"] = cmp.mapping(function(fallback) if cmp.visible() then |