-
Hi,
Currently when `:AsyncRun command`, it will show
```
[command]
...output...
[Finished in # seconds]
```
Because my use case involves username and password in the command, obviously havi…
-
I try to add this
```
autocmd bufenter * if (winnr("$") == 1 && exists("b:loaded_flake8_ftplugin") && b:loaded_flake8_ftplugin == "primary") | q | endif
```
but it not work
-
### Feature description
I know we have a shortcut "" to switch to the next/previous quick fix list window, I am wondering can we also support some keymap to delete the current quick fix list window? …
-
I want to share a custom command so that I have all the issues found from pio check in the quickfix list.
In this way the user can jump directly to the issue.
```
command! PIOCheck {
var cu…
-
It seems that currently QuickFix doesn't provide any way of knowing what's going on with actual connections. For example, I have an application where a human trader clicks on "Connect", and when I sta…
-
```rust
struct A;
fn main() {
let a = A;
a.$0clone();
}
```
or
```rust
struct B;
fn main() {
B::$0default();
}
```
this currently suggests "generate `clone` method"/"ge…
-
When I set g:aghighlight to enable search lighting, it works only if I don't specify a path to search. However, I like to include a path to significantly speed up my search.
e.g.
`Ag searchthis` …
-
In the following example the parser could try and recover from the error better so that the remainder of the code can still work out:
``` go
package demo
func foo(&int) {
}
```
A quickfix for this…
-
When installing Modrinth on Linux from Flathub, the app has two titlebars, and the two are working fine.
As said on this issue by getchoo, the native decorations should be enabled by default to dis…
-
Consider this code:
```vb
For i = 0 To 20
On Error GoTo Handler
Debug.Print 42/0
Handler:
Next
```
The happy path overlaps the error-handling path, resulting in unexpected execution …