-
Notifications
You must be signed in to change notification settings - Fork 2
Update #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Update #2
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -1,9 +1,14 @@ | ||||
| let g:ycm_use_clangd = 1 | ||||
| set tabstop=4 shiftwidth=4 expandtab | ||||
|
|
||||
| let g:copilot_proxy = '' | ||||
|
|
||||
| "let g:ycm_use_clangd = 1 | ||||
| "let g:ycm_clangd_binary_path = '/home/yan/.vim/bundle/youcompleteme/third_party/ycmd/third_party/clangd/output/bin/clangd' | ||||
| let g:ycm_clangd_args = ['-log=verbose'] | ||||
| let g:ycm_max_diagnostics_to_display = 0 | ||||
| "let g:ycm_max_diagnostics_to_display = 0 | ||||
| let g:ycm_keep_logfiles = 1 | ||||
| let g:ycm_log_level = 'debug' | ||||
| "let g:ycm_server_python_interpreter = '' | ||||
|
|
||||
| let g:ycm_enable_diagnostic_signs = 0 " hide vertical leftside panel | ||||
|
|
||||
|
|
@@ -16,12 +21,16 @@ filetype off " required | |||
| set rtp+=~/.vim/bundle/Vundle.vim | ||||
| call vundle#begin() | ||||
| Plugin 'VundleVim/Vundle.vim' | ||||
| Plugin 'valloric/youcompleteme' | ||||
| Plugin 'ycm-core/YouCompleteMe' | ||||
| Plugin 'vhda/verilog_systemverilog.vim' | ||||
| "" Plugin 'github/copilot.vim' | ||||
| call vundle#end() " required | ||||
| let &rtp .= ',' . expand( '<sfile>:p:h' ) | ||||
|
||||
| let &rtp .= ',' . expand( '<sfile>:p:h' ) |
Copilot
AI
Apr 20, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The trailing commented fragment ",multispace:... looks like it was meant to be part of the set listchars=... configuration but is currently disabled and left as a dangling line. Either remove it or fold the multispace: setting into the set listchars line so the intended listchars configuration is explicit and maintainable.
| ",multispace:→\ \ \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is commented with two quote characters (
"" Plugin ...). Vim treats"as the comment leader, so the extra quote is just noise and makes it look like an accidental typo. Use a single leading"(or remove the line entirely) to keep the config unambiguous.