Yutian Li

Results 13 issues of Yutian Li

I'm proposing to remove `_ssh_agent_sock` variable in module ssh: 1. this variable is not used elsewhere, and serves no apparent purpose except making `SSH_AUTH_SOCK` more predictable. But I don't think...

Discussion
Fix

I use zsh 5.3.1 with prezto current master. I traced a problem to [this line](https://github.com/sorin-ionescu/prezto/blob/master/modules/editor/init.zsh#L191). To reproduce the problem, have editor plugin enabled and choose a multiline prompt theme. Trigger...

Upstream
Discussion

Fixes #41 (at least for me). `import "C"` is not a real package. So `godef` cannot correctly parse any package that says `import "C"`. This adds a special treatment for...

When maxclients is reached, and another client connects, ``` void SocketChannel::OnAccepted() { if (aeCreateFileEvent(GetService().GetRawEventLoop(), m_fd, AE_READABLE, Channel::IOEventCallback, this) == AE_ERR) { int err = errno; ERROR_LOG("Failed to add event for...

I'm running ARDB with RocksDB as a backend. My database is around 100 GB. I usually have one window with `watch redis-cli info` to monitor the status, and if I...

In the config file there is ``` # Close the connection after a client is idle for N seconds (0 to disable) timeout 0 ``` but I don't seem to...

Feature request. After selecting a completion, if it is a function, insert placeholder parameters. Basically what [this line](https://github.com/nsf/gocode/blob/master/emacs-company/company-go.el#L149) does for Gocode. I can work on this if you like.

enhancement
help wanted

Without `--resolve-all-configs`, isort merges the options provided on the command line with the options found in config files. However this behavior is broken when `--resolve-all-configs` is specified. This change fixes...

I read about a previous issue #7 and I have the exact same problem. Currently my config file is like: ```lisp (with-eval-after-load 'evil (require 'anzu) (require 'evil-anzu) (global-anzu-mode t)) ```...

Somehow if I don't call `zle reset-prompt`, the highlighting turns off when the completion is done (either there's no more choice or when I ctrl-c)