Results 5 issues of Zichao Yang

When the matlab code is wrong, the tips can't show correctly. My pc's default language is Chinese. I don't know if that's the reason. wrong one: `x=1:1:100; y=10*x*x; plot(x,y) title('test')`...

目前 Latex 中的文字与代码中间无论有空格还是没空格都不会纠正。这样的混排主要出现在文字和以下命令一起使用时: ``` LSTM \cite{1}。 从公式 \eqref{eq:1} 来看, 参数 $\tilde{a}_1$ 表示 如图、表、算法 \ref{fig:1} 所示 ``` 希望可以增加这一增加空格的纠正功能。

**Is your feature request related to a problem? Please describe.** Every time I want to put the specific structure of the model I use into a thesis, I will use...

Can CheckOptions, such as readability-identifier-naming.FunctionCase: camelBack, be passed to clang-tidy through clangd.arguments? It appears that --clang-tidy-checks only supports certain checks without options, like bugprone-argument-comment. While I understand that this configuration...

enhancement

如果想将 git_repo_url 设置为原始仓库,但原始仓库有很多文件,这样会一次性翻译大量文件,所以想设置 file_path_filter 来一个一个测试,以翻译 README.md 为例,设置成 file_path_filter 分别为 `local_repo/README.md` 和 `README.md` 都没有作用,所以想请教下file_path_filter 应该怎样设置? ``` with: git_repo_url: https://github.com/radi-cho/awesome-gpt4 api_key: ${{ secrets.OPENAI_API_KEY }} file_path_filter: local_repo/README.md ```