We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe68c28 commit 6b24f48Copy full SHA for 6b24f48
lua/blink/cmp/fuzzy/lib.rs
@@ -86,9 +86,7 @@ pub fn get_words(_: &Lua, text: String) -> LuaResult<Vec<String>> {
86
.collect())
87
}
88
89
-// NOTE: skip_memory_check greatly improves performance
90
-// https://github.com/mlua-rs/mlua/issues/318
91
-#[mlua::lua_module(skip_memory_check)]
+#[mlua::lua_module]
92
fn blink_cmp_fuzzy(lua: &Lua) -> LuaResult<LuaTable> {
93
let exports = lua.create_table()?;
94
exports.set("fuzzy", lua.create_function(fuzzy)?)?;
0 commit comments