doongjohn
doongjohn
### Zig Version 0.10.0-dev.3315+1a16b7214 ### Steps to Reproduce ```zig // main.zig const std = @import("std"); const stdout = std.io.getStdOut().writer(); const stdin = std.io.getStdIn().reader(); pub fn main() !void { var general_purpose_allocator...
there are two problems with tuple if the code is splitted into 2 modules ```nim # module.nim type B* = tuple a: int b: int var x*: B = (a:...
Edit: I'm dumb I just needed to install xz `tar (child): xz: Cannot exec: No such file or directory` btw I'm using wsl this is the entire output ``` install...
**Describe the bug** `cd` produces this error `Paq: Failed to spawn cd (ENOENT: no such file or directory)` **To Reproduce** ```lua { 'iamcco/markdown-preview.nvim', run = [[cd app]] }; ``` **Expected...
### What Operating System(s) are you seeing this problem on? Windows ### Which Wayland compositor or X11 Window manager(s) are you using? _No response_ ### WezTerm version 20220916-074812-8d2a3cf7 ### Did...
``` Collecting entmax Using cached entmax-1.0.tar.gz (7.2 kB) Preparing metadata (setup.py) ... error error: subprocess-exited-with-error × python setup.py egg_info did not run successfully. │ exit code: 1 ╰─> [6 lines...
https://github.com/norcalli/nvim-colorizer.lua#customization ```lua -- Attach to certain Filetypes, add special configuration for `html` -- Use `background` for everything else. require 'colorizer'.setup { 'css'; 'javascript'; html = { mode = 'foreground'; }...
 1. Run cmd: `ZenMode` 2. Start leap ```lua local function leapSearch() leap.leap { target_windows = vim.tbl_filter( function(win) return vim.api.nvim_win_get_config(win).focusable end, vim.api.nvim_tabpage_list_wins(0) ) } end...
### Description ```nim 1| type SomeSturct = object 2| 3| proc `=destroy`(x: SomeSturct) = 4| echo "SomeSturct destroyed" ``` This is a valid destroy hook according to . However nimsuggest...
this will allow highlighting `TODO(author):` ```lua highlight = { pattern = [[(KEYWORDS)\s*(\([^\)]*\))?:]], }, ```  fixes https://github.com/folke/todo-comments.nvim/issues/10 fixes https://github.com/folke/todo-comments.nvim/issues/179