Linda_pp

Results 109 issues of Linda_pp

git-brws assumes default remote name is "origin". However, Git 2.30 introduced new configuration `clone.defaultRemoteName` for specifying default remote name. git-brws should respect the configuration. Ref: https://github.blog/2021-03-15-highlights-from-git-2-31/

enhancement

## git-brws version v0.11.11 ## Repro Run: ``` git clone https://github.com/rhysd/git-brws.git cd git-brws git brws -c ./src/main.rs ``` ### Expected behavior Open `https://github.com/rhysd/git-brws/blob/master/src/main.rs` ### Actual behavior Opened `https://github.com/rhysd/git-brws/blob/{hash}/src/main.rs` ignoring `-c`...

bug

## Repro ```sh git clone https://github.com/rhysd/wain.git cd wain/spec-test git brws ./wasm-testsuite/f32.wast ``` ## Expected Open `https://github.com/WebAssembly/testsuite/blob/xxx/globals.wast` ## Actual Opened `https://github.com/rhysd/wain/blob/xxx/spec-test/wasm-testsuite/f32.wast` ## Description `git-brws` does not consider submodule. When opening file,...

bug

`rg` provides `--sort` option. `hgrep` also can support it. Note that using `--sort` option can slow `hgrep` because sorting the matches means all matches must be calculated before printing them....

enhancement

Consider to add indent guide to the result snippets. Since snippets usually include indents and sometimes the indent level is deep, it would be helpful to know the level. ```...

enhancement

This commit fixes the following warning emit by rustc v1.57: ``` > cargo build --release warning: unnecessary parentheses around assigned value --> core/src/hardware/ppu.rs:33:30 | 33 | const STAT_UNUSED_MASK: u8 =...

Window should be rendered only when LCDC.0 and LCDC.5 are enabled. But mooneye-gb checks only LCDC.5. This PR fixes the point. PanDocs: https://gbdev.io/pandocs/LCDC.html#ff40---lcdc-lcd-control-rw

This branch is an experiment to use [new Asyncify](https://emscripten.org/docs/porting/asyncify.html) for vim.wasm's event loop. ## Implementation Status - [x] Replace `SharedArrayBuffer` and `Atomics` with simple `postMessage` - [x] Use `Asyncify.handleSleep` to...

### What is an issue which you want to solve with your feature request? A vim plugin like [killersheep](https://github.com/vim/killersheep) does not fully work. ### Describe the solution you'd like Support...

enhancement

### Describe the bug `VimWasm.cmdline()` runs given command, but screen is not updated. To avoid this, appending `| redraw` to the command is necessary. ### Steps To Reproduce 1. Visit...

bug