Hawtian Wang
Hawtian Wang
Font features can not be update from neovim. It should be configed in [config file](https://neovide.dev/config-file.html#location). see https://neovide.dev/config-file.html#font
The push action seems to use just `git push`. Maybe you should set your remote name as `origin` and branch is `master`?
你如果补全也在用 `nvim-cmp` 的话,可以尝试下我这个方案。 ```lua local just_inserted = false local rime_ls_auto_confirm = vim.schedule_wrap(function() local cmp = require("cmp") if not cmp.visible() then return end local entries = cmp.core.view:get_entries() if entries == nil...
> ## config > ```lua > local treesitter_postfix = require("luasnip.extras.treesitter_postfix").treesitter_postfix > local postfix_builtin = require("luasnip.extras.treesitter_postfix").builtin > > ls.add_snippets("javascript", { > treesitter_postfix({ > trig = ".mv", > matchTSNode = postfix_builtin.tsnode_matcher.find_topmost_types({ >...
> > > ## config > > > ```lua > > > local treesitter_postfix = require("luasnip.extras.treesitter_postfix").treesitter_postfix > > > local postfix_builtin = require("luasnip.extras.treesitter_postfix").builtin > > > > > > ls.add_snippets("javascript",...
> I'm stuck here and can't move.  and cpu 100% here  can you try this #1145 see if the problem is solved
i can't reproduce this on my machine. it seems like there's no captures can be found in the match. maybe you can use `function node` to show which captures are...
@yifan0414 Can you try to add `reparseBuffer = "live"` to your postfix snippet? This will remove `trig` first, then reparse the buffer, then try to expand the snippet. And what's...
@hfn92 The `LS_TSMATCH` must not contains the `trig`. So only these nodes before current cursor are considered. Remove exclude current cursor check seems not a good idea. That may cause...