Aman Karmani
Aman Karmani
To get events when network interface IPs change you can use https://stackoverflow.com/questions/36347807/how-to-monitor-ip-address-change-using-rtnetlink-socket-in-go-language
> I'll improve the code and contact you again. Hi @thasega, I wonder if you have any updates to this PR?
This would be very useful. @ivanjaros perhaps you can wrap your code snippet in a PR?
We can probably fix this by using https://github.com/scrooloose/nerdtree/issues#issue/21 instead of b7cdd3ce6644677cae322233de8040fea3c34c29 Do you mind testing and see if it fixes your issue?
Can someone experiencing this explain how they use buffers as part of their workflow? I do not use buffers explicitly and have not run into this issue.
By explicitly, I meant via commands like `:bclose` and `:bdel`. Janus attempts to mimic TextMate's tab-per-open-file model, which is how I'm used to thinking. However, this issue and pull requests...
@vmihailenco could you expand on what you're thinking here?
None are present. ``` tmm1@Mac-mini ~ % sysctl hw.cpufrequency tmm1@Mac-mini ~ % sysctl hw.cpufrequency_min tmm1@Mac-mini ~ % sysctl hw.cpufrequency_max tmm1@Mac-mini ~ %
``` tmm1@Mac-mini /tmp % cat freq.c #include #include int main() { int mib[2]; unsigned int freq; size_t len; mib[0] = CTL_HW; mib[1] = HW_CPU_FREQ; len = sizeof(freq); sysctl(mib, 2, &freq,...
Any updates on this refactor?