Ainar Garipov

Results 64 issues of Ainar Garipov

I can understand why `bool` give a syntax error, but `_Bool` has been a builtin since C99. For reference, this is the example I've tried: ```c _Bool (*f)(void *, void...

In short: ```go package main import ( "fmt" "github.com/miekg/dns" ) func main() { a := &dns.A{} a2 := dns.Copy(a).(*dns.A) fmt.Println(a.A == nil, a2.A == nil) } ``` ```none true false...

See golang/go#51028 golang/go#51082. It seems like this should mostly be a matter of updating some dependencies, but I don't know for sure.

I have a directory with several Go “scripts”. That is, files each of which has a `//go:build ingore` directive and its own `main`. Currently, `gopls` doesn't seem to handle this...

FeatureRequest
gopls
Tools

Versions: vim-lsc ab952d62 clangd clangd version 10.0.0-4ubuntu1 Config: let g:lsc_server_commands = { \ 'c': { \ 'command': 'clangd', \ 'log_level': -1, \ 'suppress_stderr': v:true, \ }, \} Before rename: int main(void)...

Some servers seem to log a lot of unnecessary stuff to `stderr`, most of it not needed by the users. Setting it to `v:true` by default in a future release...

NVIM: v0.3.1. vim-lsc versions tested: b02690e, v0.2.9, v0.3.2. When I use: ```vim let g:lsc_server_commands = {"go": "127.0.0.1:6061", "ruby": "127.0.0.1:7658"} ``` I get: ``` Error detected while processing function 8_OnOpen[4]..lsc#file#onOpen[1]..lsc#server#start[3]..24_Start[32]..24_Call[ 12]..1:...

First of all, thank you for a great plug-in. This is more of a question/documentation request. Many people, myself included, usually wish to open the definition of an identifier in...

Go 1.18 includes the new `net/netip` package with value types related to IP addresses and networks. Perhaps, new methods should be added, for example `Reader.LookupAddr(ip netip.Addr, result any)` and `Reader.Prefixes`...

I've been having a spurious `Async::TimeoutError` in my logs whenever a TCP connection to the client is closed. After some digging I've monkey-patched `Falcon::Server` like this: ```ruby module Falcon class...

enhancement