BenYip
BenYip
> 我猜是alt+字母會打出擴展ASCII字符吧 右邊的alt才是altgr,左邊應該不會
I add hooks to zsh to do this. But it doesn't work so well, because `rename-tab` renames the focus tab, but not the tab it belongs. For example, if I...
> Treesitter has improved greatly since then. Can you elaborate this? > I am expecting a lot of issues from packaging side, especially on Windows systems and more exotic ones...
I don't agree with the "disadvantages" skywind3000 gave at the first place. Some of them are objectively false.
It still compiles in C99. The only feature they use is unnamed structs/unions in a few structs. We can give them names to suppress warnings.
Maybe we can handle it the same way as libsodium. For Linux user, they can use liblibtree-sitter.so from package manager. And for Windows user, we bundle it in https://github.com/vim/vim-win32-installer.
So in order to support long path, we need to do two things: 1. Replace all `MAX_PATH` usage with something like: ```C DWORD dir_len; dir_len = GetCurrentDirectoryW(0, NULL); if (dir_len...