We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
使用Lazy.nvim进行安装:
-- 下面的内容放置在`cmp`的`dependencies`部分 { 'git@github.com:wasden/cmp-flypy.nvim.git', -- make flypy只编译小鹤音形, make wubi98只编译98五笔, make或make all全编译 build = "make flypy", config = function() require'plugin_config/cmpflypy_config' end, },
安装后,在使用中提示:
而且我发现我的配置并没有生效,因为我在配置中使用了comment = false但是我依然会在注释部分触发该错误,另外我在配置的filetype部分增加了vimwiki但是不会在vimwiki文件中触发该错误,这也说明我的配置没有生效,cmpfpypy_config.lua内容如下:
comment = false
filetype
vimwiki
require("flypy").setup({ dict_name = "flypy", -- 选择码表:flypy为小鹤音形,wubi98为98五笔 comment = false, -- 在所有文件类型的注释下开启 filetype = { "markdown", "vimwiki" }, -- 在指定文件类型下开启 num_filter = true, -- 数字筛选 source_code = false, -- 显示原码n space_select_enable = false, -- 空格上屏开关 space_select_enable_hint = "", -- 空格上屏提示样式 space_select_switch_mappings = "<C-Space>", -- 空格上屏开关按键映射n })
The text was updated successfully, but these errors were encountered:
我发现是lua加载动态库的时候出现的问题,给出的信息如下: nil /home/kaiser/.local/share/nvim/lazy/cmp-flypy.nvim/lua/../build/libflypy.so: undefined symbol: luaL_checkversion_ open
Sorry, something went wrong.
No branches or pull requests
使用Lazy.nvim进行安装:
安装后,在使用中提示:
而且我发现我的配置并没有生效,因为我在配置中使用了
comment = false
但是我依然会在注释部分触发该错误,另外我在配置的filetype
部分增加了vimwiki
但是不会在vimwiki
文件中触发该错误,这也说明我的配置没有生效,cmpfpypy_config.lua内容如下:The text was updated successfully, but these errors were encountered: