Iron-E

Results 158 comments of Iron-E

Related: #141. I've been thinking about (after we release 1.6) to create configuration "presets" that users can use

I can't seem to reproduce, both with `nvim --clean` or my usual config. Try with the `--clean` snippet from the other issue: ```sh nvim --clean --cmd 'set rtp+=~/.local/share/nvim/site/pack/packer/start/barbar.nvim' --cmd 'set...

Did you get around to trying https://github.com/romgrk/barbar.nvim/issues/321#issuecomment-1285894820?

Closures are also not included in this. ```rust foo.ok_or_else(|| { // closure }) ``` Should be: ```rust foo.ok_or_else(|| { // closure }) ```

Sorry for double comment. Also does not work for `macro_rules!`: ```rust macro_rules! filter_map_view { ($query:ident, $val:ident) => { ``` Should be: ```rust macro_rules! filter_map_view { ($query:ident, $val:ident) => { ```

I think some of the confusion comes from the qualified naming of `control_brace_style` and unqualified naming of `brace_style`. You might consider renaming this option to `item_brace_style` if that is the...

I was looking at using [`skim`](https://github.com/lotabout/skim) for this but if `dialoguer` could do it that would be even better! Maybe `skim` could drive the select / multi-select implementations? I don't...

~~Is this reproducible on earlier versions of Neovim, by chance?~~ Edit: Couldn't reproduce on 0.10, so update incompatibilities seem unlikely

Can someone who experiences this post a minimal reproduction? I have a template here: ```lua --[[ minimal.lua ]] local lazy = vim.fn.stdpath('data') .. '/lazy/' vim.opt.rtp:prepend { lazy .. 'barbar.nvim', lazy...

As for hiding the buffer, what romgrk said would be the solution. For example, the following in your config will achieve what you're looking for: ```lua -- ftplugin//config.lua vim.api.nvim_set_option_value('buflisted', false,...