Xintong Li
Xintong Li
I also change the styles of underscore, superscript, and subscript as normal math color.
Red statements seem uncomfortable, so I redefine the statement, refzone and etc. referring to the gruvbox used by Overleaf.
The following setting will highlight the matched pattern when typing. ``` if has('nvim') set inccommand=nosplit endif ```
Hi @jesseleite, my workaround is as follows, so that `E516: No buffers were deleted` can be avoided. I don't like quiting vim accidentally, so I skip your last requested feature....
When you have a large screen, you may want to assign more space for the centered content. You can do this by enlarging the `max-width` in line 85 of `public/css/lanyon.css`...
My workaround with `conda`: Add the following to `init.vim`/`.vimrc`: ``` if $CONDA_PREFIX == "" let s:current_python_path=$CONDA_PYTHON_EXE else let s:current_python_path=$CONDA_PREFIX.'/bin/python' endif call coc#config('python', {'pythonPath': s:current_python_path}) ```
> 这个题的DP解法 用C++报错了老哥 @conghao321 @grandyang 问题在于dp数组的0初始化。如下改用memset就好了,或者干脆直接不初始化这道题也没问题。 ``` class Solution { public: string longestPalindrome(string s) { if (s.empty()) return ""; int n = s.length(), left = 0, len = 1; int...
I also expect the behavior of using Fira Code in iTerm2.