Skip to content

Update - #2

Open
likeamahoney wants to merge 1 commit into
mainfrom
update
Open

Update#2
likeamahoney wants to merge 1 commit into
mainfrom
update

Conversation

@likeamahoney

Copy link
Copy Markdown
Owner

TBD

@likeamahoney
likeamahoney requested a review from Copilot April 20, 2026 11:58
@likeamahoney

Copy link
Copy Markdown
Owner Author

@copilot pls do review

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the repository’s Vim configuration, primarily adjusting editor defaults and updating plugin setup.

Changes:

  • Set global indentation defaults (4-space, expand tabs) and enable syntax highlighting.
  • Update YouCompleteMe plugin source and add additional YCM key mappings.
  • Add visible whitespace rendering (list/listchars) and introduce Copilot-related config placeholders.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread .vimrc
Plugin 'valloric/youcompleteme'
Plugin 'ycm-core/YouCompleteMe'
Plugin 'vhda/verilog_systemverilog.vim'
"" Plugin 'github/copilot.vim'

Copilot AI Apr 20, 2026

Copy link

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.

Suggested change
"" Plugin 'github/copilot.vim'
" Plugin 'github/copilot.vim'

Copilot uses AI. Check for mistakes.
Comment thread .vimrc
Plugin 'vhda/verilog_systemverilog.vim'
"" Plugin 'github/copilot.vim'
call vundle#end() " required
let &rtp .= ',' . expand( '<sfile>:p:h' )

Copilot AI Apr 20, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let &rtp .= ',' . expand('<sfile>:p:h') appends the directory containing this vimrc to runtimepath. In this repo that directory doesn’t contain any runtime scripts/plugins, so this is effectively a no-op at best, and at worst can cause Vim to source unintended runtime files if anything is added there later. Consider removing it or pointing runtimepath at a specific, intended runtime directory (e.g., a dedicated vim/ subfolder).

Suggested change
let &rtp .= ',' . expand( '<sfile>:p:h' )

Copilot uses AI. Check for mistakes.
Comment thread .vimrc
set list

set listchars=tab:▸\ ,trail:·,precedes:←,extends:→,nbsp:·
",multispace:→\ \ \

Copilot AI Apr 20, 2026

Copy link

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.

Suggested change
",multispace:→\ \ \

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants