autozimu's recent timeline updates
autozimu's repos on GitHub
Rust · 3554 watchers
LanguageClient-neovim
Language Server Protocol (LSP) support for vim and neovim.
Swift · 107 watchers
StringMetric.swift
String metric/similarity functions implemented in Swift.
Rust · 101 watchers
unison-fsmonitor
unison-fsmonitor implementation
Swift · 14 watchers
Nanomsg.swift
Swift binding for nanomsg
Rust · 9 watchers
im-switch
CLI to switch Input Method (macOS only)
JavaScript · 6 watchers
AudioMeter.React
A reusable audio volume meter using ReactJS.
Makefile · 6 watchers
docker-rust-cross-for-macos
C# · 4 watchers
LXD.NET
LXD client implemented in C#
Rust · 2 watchers
colorizex
A CLI that colorize
Makefile · 2 watchers
unison-binaries
Unison 2.51.2 binaries compiled using ocaml 4.08.1 on Amazon Linux 2012.03.
Shell · 1 watchers
aur-swift
Shell · 1 watchers
cross
"Zero setup" cross compilation and "cross testing" of Rust crates
Swift · 1 watchers
dayOfWeek
Calculate day of week
Python · 1 watchers
deoplete-omnisharp
TeX · 1 watchers
latex_styles
Matlab · 1 watchers
MATLAB
1 watchers
plan9port
Plan 9 from User Space
TypeScript · 1 watchers
react-boilerplate
Swift · 1 watchers
swift-guide
Python · 1 watchers
vim-hug-neovim-rpc
EXPERIMENTAL
Vim script · 1 watchers
vim-plug
:hibiscus: Minimalist Vim Plugin Manager
C# · 1 watchers
WPF-TabControl
WPF TabControl with tab close button, tab new button, tab drag&drop support.
VimL · 0 watchers
ale
Asynchronous Lint Engine
HTML · 0 watchers
AudioMeter.Polymer
0 watchers
aws-export-credentials
Get AWS credentials from a profile to inject into other programs
OCaml · 0 watchers
bucklescript
A backend for the OCaml compiler which emits JavaScript.
C++ · 0 watchers
CNanomsg
Modulemap for nanomsg
0 watchers
ctexfonts
Nix · 0 watchers
emacs-im
JavaScript · 0 watchers
flow-language-server
An implementation of the Language Server Protocol for Flow
JavaScript · 0 watchers
flowInterfaces
List of flowtype Interfaces.
C# · 0 watchers
gVimClient
gVim wrapper to open files in new tabs. For Windows.
TypeScript · 0 watchers
HelloCDK
TypeScript · 0 watchers
HelloCDKECS
JavaScript · 0 watchers
HelloCDKServerless
TypeScript · 0 watchers
HelloTypeScript
Ruby · 0 watchers
homebrew-formulas
TypeScript · 0 watchers
javascript-typescript-langserver
JavaScript and TypeScript code intelligence through the Language Server Protocol
Python · 0 watchers
jinja
The Jinja2 template engine
Julia · 0 watchers
julia
The Julia Language: A fresh approach to technical computing.
Java · 0 watchers
lambda-sample
HTML · 0 watchers
langserver.github.io
0 watchers
language-server-protocol
Defines a common protocol for language servers.
Rust · 0 watchers
lsp-types
Types for communicating with a language server
VimL · 0 watchers
neosnippet-snippets
The standard snippets repository for neosnippet
Rust · 0 watchers
neovim-lib
Rust library for Neovim clients
0 watchers
nixpkgs
Nix Packages collection
0 watchers
nixpkgs-ruby
A Nix repository with all Ruby versions being kept up-to-date automatically
TypeScript · 0 watchers
NyaoVim
Web-enhanced Extensible Neovim Frontend
Vim script · 0 watchers
omnisharp-vim
Vim omnicompletion (intellisense) and more for c#
0 watchers
osxsnarf
A Plan 9-inspired way to share your OS X clipboard to multiple hosts.
0 watchers
ox-pandoc
Another org-mode exporter via pandoc.
0 watchers
plug-wildcard
Python · 0 watchers
projecteuler
Project Euler
Python · 0 watchers
python-language-server
An implementation of the Language Server Protocol for Python
JavaScript · 0 watchers
react-native-sample
OCaml · 0 watchers
reason
A meta language toolchain to build systems rapidly
Rust · 0 watchers
rls
Repository for the Rust Language Server (aka RLS)
Rust · 0 watchers
rust-mock-sample
Java · 0 watchers
Spring-boilerplate
Java · 0 watchers
spring-security-saml
SAML extension for the Spring Security project
JavaScript · 0 watchers
survivejs
Swift · 0 watchers
swift-demos
Swift playground
VimL · 0 watchers
vim-rest-console
A REST console for Vim.
VimL · 0 watchers
vim-test
Run your tests at the speed of thought
TypeScript · 0 watchers
vscode-java
Java Language Support for Visual Studio Code
0 watchers
WSL-1
Source code behind the Windows Subsystem for Linux documentation.
0 watchers
zephyr
Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
Julia · 0 watchers
ZMQ.jl
Julia interface to ZMQ
autozimu

autozimu

V2EX member #33592, joined on 2013-02-04 07:10:32 +08:00
autozimu's recent replies
xrdp + Microsoft Remote Desktop

或者

ssh forward X
可以长按链接, 选择网页打开。

以后相同 domain 的 url 会遵照这个设置。
May 1, 2018
Replied to a topic by chemzqm Vim LanguageClient-neovim 补全实现的若干问题
并不是我不想讨论这些问题. 而是在你了解具体问题的复杂性之前讨论并不能解决问题. 再者, talk is cheap. 我的时间很有限, 不想把它浪费在无谓的争论上.

1. 这么做是有原因的. 因为的确部分用户(包括我)通过一些个设置是能够利用 snippet 的功能的. https://github.com/autozimu/LanguageClient-neovim/pull/327 而且我也加入了最新的 configuration override 这个检测.

2. 推荐你去尝试了解下 deoplete 整个的 workflow, 重点 deoplete 什么情况下触发 completion. 在用到这个 regex 的时候, 根本还没有 LSP server 的 response, 何谈根据 LSP response 判断起点. `\ w` 只是目前的一个权宜之计.

3. 同 2

4. 这个是因为 deoplete 并不理解 LSP 的 TextEdit 概念. deoplete 期望收到的是 word, 而某些 LSP server 返回的是 TextEdit, 所以需要这一步的装换. comment 里面我也写到了, extremely hacky. 如果你发现了某些情况下这个 hack 会有问题, 当然欢迎你的 PR, 但不是这种会造成 regression 的 https://github.com/autozimu/LanguageClient-neovim/issues/409

我再重复一遍, 我的时间有限, 不想浪费在讨论和争论上. Show me your code.
Dec 11, 2017
Replied to a topic by MaskRay Vim 使用 cquery: C++ language server
@skt041959 什么是没法编译?

大多数情况应该是不需要编译的, 已经有编译好的 binaries 了呀
看起来很不错。已 star
Apr 2, 2017
Replied to a topic by renyijiu JavaScript 求推荐下好点的 JavaScript 代码
Mar 14, 2017
Replied to a topic by Youfou Python 新技能:在你的微信上监控 Python 程序
@Youfou X server
建议可以发到 reddit 相关社区去,效果要比这里好很多。

再有,确实如上面建议,可以备一份中文 README ,方便中文用户。
Mar 5, 2017
Replied to a topic by zgqq Linux 有没有大佬用 archlinux 工作的?
一年多了,从没挂过

当然,可能是因为我不开桌面, UI 是用 X over ssh
Feb 21, 2017
Replied to a topic by autozimu Vim Language Server Protocol support for neovim
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   754 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 22ms · UTC 21:01 · PVG 05:01 · LAX 14:01 · JFK 17:01
♥ Do have faith in what you're doing.