(typo fix) format the comment properly
This commit is contained in:
parent
ad462255b2
commit
dbc39e9daa
1 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,7 @@ local utils = require('utils')
|
|||
utils.opt('o', 'completeopt', 'menuone,noinsert,noselect')
|
||||
vim.cmd [[set shortmess+=c]]
|
||||
vim.g.completion_confirm_key = ""
|
||||
vim.g.completion_matching_strategy_list = {'exact', 'substring', 'fuzzy'}-- <Tab> to navigate the completion menu
|
||||
vim.g.completion_matching_strategy_list = {'exact', 'substring', 'fuzzy'}
|
||||
-- <Tab> to navigate the completion menu
|
||||
utils.map('i', '<S-Tab>', 'pumvisible() ? "\\<C-p>" : "\\<Tab>"', {expr = true})
|
||||
utils.map('i', '<Tab>', 'pumvisible() ? "\\<C-n>" : "\\<Tab>"', {expr = true})
|
||||
|
|
Reference in a new issue