Iron-E

Results 16 issues of Iron-E

As noted in #270, it seems like we have a dependency cycle (note the double-ended arrows): ![dep cycle](https://www.plantuml.com/plantuml/png/SoWkIImgAStDuOfEAarBIotAoSnBZLL8B5P0S96bz8fIyr9IYy0g84mKMQ1f9H3jO1QAN5PfRa5yRduAH1xEu-92g56mqRL3oA1Aw4BjGrCEjOWBfWki52O8qG4MWSl3117A7802m1000000 "Dependency Cycle") The best way I can think to fix this is...

help wanted

This PR adds scrolling the bufferline via `BufferScrollLeft`/`Right`. To accomplish this, a new parameter to several functions had to be added: `refocus`. On master, barbar.nvim will default to always keeping...

request

> Some option to show only buffers related to specific root cwd would be a nice addition to worktress - after changing it would show me opened buffers just for...

request

I discovered this while investigating #218. To reproduce, run this script: ```vim " Must be global -_- function! BufferlineOnOptionChanged(dict, key, changes) abort echom "foo" call luaeval("require'bufferline'.on_option_changed(nil, _A, nil)", a:key) endfunction...

bug

`nvim-treesitter` does not tend to support very fine syntax highlighting as per `:h group-names`. For example, in Rust the `?` token is represented as an `Operator` (e.g. `+`, `-`, `&&`)...

enhancement

```coq Example test_orb1: (orb true false) = true. ``` In that example `=` is matched as a keyword rather than an operator of some kind. Even if the default is...

help wanted
highlighting
good first issue

I also noticed that you can't specify a definition call from its arguments. Example: ```coq Example test_orb1: (orb true false) = true. ``` `orb`, `true`, and `false` all must be...

help wanted
highlighting
good first issue

`|` is detected as `coqKwd`, like `match` in the below example: ![coqKwd](https://user-images.githubusercontent.com/36409591/101261168-162c7380-372d-11eb-9953-8638b0c6ecd2.png) It may be desired to `:hi link` `|` as `coqVernacPunctuation`, `Delimiter`, or some other group since `|` isn't...

help wanted
highlighting
good first issue

![Highlighting!](https://user-images.githubusercontent.com/36409591/101260147-b1b9e600-3725-11eb-9daf-69def9029fee.png) The first `|` gets picked up as `coqVernacPunctuation`, and the rest are picked up as `coqIndConstructor` Relevant: #87

help wanted
highlighting
good first issue

Hello! Thank you for your work on this project— it has been my terminal of choice for the past year. I see that [QTerminal](https://github.com/lxqt/qterminal/issues/684) supports ligatures, but LXTermimal does not....