From dbc39e9daad736adb482dc989d60426402826bdb Mon Sep 17 00:00:00 2001 From: Vladan Popovic Date: Sun, 12 Dec 2021 20:08:54 +0100 Subject: [PATCH] (typo fix) format the comment properly --- lua/completion.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/completion.lua b/lua/completion.lua index e93ee93..4b4809f 100644 --- a/lua/completion.lua +++ b/lua/completion.lua @@ -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'}-- to navigate the completion menu +vim.g.completion_matching_strategy_list = {'exact', 'substring', 'fuzzy'} +-- to navigate the completion menu utils.map('i', '', 'pumvisible() ? "\\" : "\\"', {expr = true}) utils.map('i', '', 'pumvisible() ? "\\" : "\\"', {expr = true})