ziontee113
ziontee113
Hi @brycepg , I've updated the plugin to prevent the errors you just described. One thing to note in your use case is the usage of `Shift-V`. The plugin doesn't...
Hi @mpasa , I'm sorry for the unexpected behavior of the plugin for your use case. I didn't plan for multiple targets in the same line back when I was...
Sorry @shellRaining, I don't think if I can work on said feature right now myself. PRs are welcomed tho :+1:
Hi @PetitBandit , the error comes from somewhere else, not the plugin (since color-picker doesn't use any autocmds). I can't really help you without further context. The error message is...
Thanks @thmsmlr for the suggestion. I'm currently using this in my nvim config: ```lua local augroup = vim.api.nvim_create_augroup("Tailwind HMR for crxjs", { clear = true }) local filetypes_to_check = {...
Thank you for the info. If it's expensive, we could dedicate its own "button". If the user wants to deliberately seek out those shadow elements, they know what they're getting...
Maybe try https://github.com/ryupold/raylib.zig/pull/41#issuecomment-2156182817 like I did? Worked for me at Zig 0.12
Thank you @ProIcons so much for the PR. I finally able to build with Zig 0.12! Here's my process: - Clone the fork ``` cd $YOUR_SRC_FOLDER git submodule add [email protected]:ProIcons/raylib.zig.git...
I use this query to ignore any `require` or `ipairs` identifiers in Lua ```lua markit.queries = { default = '((identifier) @markid (#not-any-of? @markid "require" "ipairs"))', } ```
@David-Kunz Hi sir. I wonder if it's possible for Markid to match any `identifier` that doesn't match this query: ```scheme ((function_declaration name:(identifier) @ignoreMe)) ``` Or is there a way for...