(typo fix) format the comment properly

This commit is contained in:
Vladan Popovic 2021-12-12 20:08:54 +01:00
parent ad462255b2
commit dbc39e9daa
No known key found for this signature in database
GPG Key ID: 39762748EB5A39D9
1 changed files with 2 additions and 1 deletions

View File

@ -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})