Luke Evers

Results 22 comments of Luke Evers

@npearson72 I actually just ran into this--fun that we did this a few days in a row. `:Format` is from here https://github.com/neoclide/coc.nvim#example-vim-configuration -- you need to add this to your...

Yeah I'm not sure either..it almost looks like that's defined from the prettier plugin and not COC directly? I tried the prettier plugin, but it doesn't support prisma lol

@SOLID-arity Yeah I'm using https://github.com/pantharshit00/vim-prisma Here's my vimrc if it helps https://github.com/lukevers/vimrc/blob/main/vimrc#L17

I can't remember, haha! I think my idea was if a certain phrase was said, or if someone ran a certain command the user could add a notification to certain...

To continue with the organization I'm currently deciding between this: ``` tree logs └── {server}    └── {channel} └── {year} └── {month} └── {day}.log ``` and this: ``` tree logs └──...

Yeah totally; when I made this issue `/var/log` must have slipped my mind. No clue about where windows systems keep their logs, but on *nix systems that would work perfectly.

hey @track0x1 are you seeing this error now? It's odd that I didn't last night when I tried your branch, but now after trying the updated version bump I get...

Found this ticket through [here](https://github.com/github/linguist/pull/2160/files#diff-8903239df476d7401cf9e76af0252622R635). I, too, have noticed that if using `deliver_stale` the syntax highlighting in GitHub stops. It's pretty annoying.

My guess is we'd just have to add `deliver_stale` in [here](https://github.com/brandonwamboldt/sublime-varnish/blob/master/Syntaxes/VCL.tmLanguage#L216). ```diff - (deliver|error|fetch|hash|hit_for_pass|lookup|ok|pass|pipe|restart|synth|retry|abandon|fail|purge) + (deliver|deliver_stale|error|fetch|hash|hit_for_pass|lookup|ok|pass|pipe|restart|synth|retry|abandon|fail|purge) ```

Just opened a PR and tested it out (see #5). `deliver_stale` needed to be before `deliver`, but it's working now.