Results 37 issues of zjp-CN

> `${count(ident)}`: The number of times `$ident` repeats in the inner-most repetition in total. This is equivalent to `${count(ident, 0)}`. refer to: https://github.com/rust-lang/rust/issues/83527#issuecomment-1070860171

An empty `rustfmt.toml` in project tells rustfmt to use the default rustfmt settings, which won't be affected by global rustfmt config (like in `~/.config/rustfmt/rustfmt.toml`).

1. add testing bash scripts for examples 2. add `src/test.rs` which takes snapshots for: * calc & mechanic: succeeded * mlua & api: failed #54 --- And * fix the...

```bash # build in `nvim-oxi/examples/mlua` cargo b -r && mkdir lua -p && mv target/release/liblua.so lua/lua.so -fn # nvim set_rtp=":set rtp+=$PWD" cmd=":lua require'lua'.greetings()" nvim -u NONE --headless +"$set_rtp" +"$cmd" +quit...

bug

I'm reading cross-term's example [interactive-demo](https://github.com/crossterm-rs/crossterm/tree/master/examples/interactive-demo). And I open the source file with helix (master version), and get a single error from rust-analyzer `file not included in module tree` on the...

fix https://github.com/helix-editor/helix/issues/4342 You can use `ROOT=$PWD hx src/main.rs` to specify the project root if helix is failed to detect the unusual project structure.

A-core
S-waiting-on-review

```lua require "symbols-outline".setup { fold_markers = { '▶', '▽' }, width = 35, symbols = { File = { icon = "File", hl = "TSURI" }, Module = { icon...

fix #123 https://user-images.githubusercontent.com/25300418/190116330-8d512c80-9939-45a7-bd3a-c795cd8e45c3.mp4 One thing I'm not sure is whether we should jump back to the outline or not.

I try to extend NeogitCommitMessage, which is a ft defined by [Neogit](https://github.com/TimUntersberger/neogit), from gitcommit. Setup is [here](https://github.com/zjp-CN/nvim-config/blob/2be80c456802196fb9867a9410c80e51eaac7980/plugin/luasnip.lua#L15-L17). In the [commit](https://github.com/zjp-CN/nvim-config/commit/2be80c456802196fb9867a9410c80e51eaac7980): * Clear the snippets of NeogitCommitMessage * Extend NeogitCommitMessage from...