loqusion
loqusion
Tabby.nvim [sets an autocommand for `TabNew`](https://github.com/nanozuki/tabby.nvim/blob/c473f1ac3db262605b716afcb570f46f27fe8eb3/lua/tabby/init.lua#L20) which [sets `'showtabline'` to 2](https://github.com/nanozuki/tabby.nvim/blob/c473f1ac3db262605b716afcb570f46f27fe8eb3/lua/tabby/init.lua#L37-L44). When Ataraxis mode runs `tabedit`, this triggers the autocommand and messes up the view as shown below. (The visible...
When I try to exit my editor via `:qa`, sometimes I'm shown an error saying `"No write since last change"`. Then, a file like the one in the screenshot is...
The return value is not used, _[at](https://github.com/jonschlinkert/gray-matter/blob/ce67a86dba419381db0dd01cc84e2d30a1d1e6a5/lib/excerpt.js#L13C13-L13C13) [all](https://github.com/jonschlinkert/gray-matter/blob/ce67a86dba419381db0dd01cc84e2d30a1d1e6a5/index.js#L125)_, despite what the function's type signature [would have you believe](https://github.com/jonschlinkert/gray-matter/blob/ce67a86dba419381db0dd01cc84e2d30a1d1e6a5/gray-matter.d.ts#L29). Instead, you're expected to assign the `excerpt` field to its first argument...
[MDX](https://mdxjs.com/) is markdown with embedded JSX. (I didn't add test data since there's also no test data for markdown.)
 Works the same for both `i_CTRL-D` and backspace. ## Versions Neovim: ``` NVIM v0.10.0-dev-869+g1d6c4ad073 Build type: RelWithDebInfo LuaJIT 2.1.0-beta3 Run "nvim -V1 -v" for more info ```
When there are two backticks in a test name, the test is ignored. When there is only one, the following error message is produced: ``` sh: -c: line 0: unexpected...
Regression tests for #46. Closes #46.
`scandir_recursive` is used to find shader files in one's shader directory. It has various issues that will probably only occur for less than 0.1% of users: - It _should_ find...
Starting code: ```rust struct User { active: bool, username: String, email: String, sign_in_count: u64, } fn main() { let user1 = User { active: true, username: String::from("[email protected]"), email: String::from("someone123"), sign_in_count:...