nvim-lua / completion-nvim

A async completion framework aims to provide completion to neovim's built in LSP written in Lua
Apache License 2.0
973 stars 78 forks source link

Boolean settings don't take boolean values as valid #364

Open baco opened 3 years ago

baco commented 3 years ago

My testing minimal init.vim

let g:completion_matching_ignore_case = v:true
let g:completion_matching_smart_case = v:true
let g:completion_trigger_on_delete = v:true

How to reproduce Load some file and completion won't take those settings into account.

Expected behavior Complete using the set options (matching_ignore_case, matching_smart_case and trigger_on_delete) as when setting them to 1 instead of v:true