# HG changeset patch # User Luka Sitas # Date 1763483821 18000 # Node ID 17c557de03e0b3f39a58bee9fe99b3171ce0c1f0 # Parent 9c80955f0c6e3ece36fc031c6927fe6a20baf948 Updated commit window Including vendor files in fuzy search diff -r 9c80955f0c6e -r 17c557de03e0 .vimrc --- a/.vimrc Fri Oct 31 14:24:31 2025 -0400 +++ b/.vimrc Tue Nov 18 11:37:01 2025 -0500 @@ -5,6 +5,8 @@ set mouse=a inoremap +colorscheme desert + " Support for tags closing and classes source $HOME/.vim/plugins/taghelp source $HOME/.vim/plugins/dbtables/dbtables.vim @@ -17,6 +19,10 @@ let g:db_name = "" " Replace with your default database name let g:db_host = "" " Replace with your default database name +function! GeneratePhpCtags() + let command = 'ctags -R --fields=+aimS --php-kinds=cdfint --languages=php --extras=+q --tag-relative=yes --exclude=".git" --exclude=".hg" --exclude="node_modules" --exclude="composer.phar" --totals=yes' + let output = system(command) +endfunction syntax on syntax enable diff -r 9c80955f0c6e -r 17c557de03e0 plugins/ctrlp --- a/plugins/ctrlp Fri Oct 31 14:24:31 2025 -0400 +++ b/plugins/ctrlp Tue Nov 18 11:37:01 2025 -0500 @@ -5,5 +5,5 @@ set wildignore+=*/vendor/bundle/* set wildignore+=*/node_modules/* set wildignore+=*node_modules/* -set wildignore+=*/vendor/* -set wildignore+=*vendor/* +"set wildignore+=*/vendor/* +"set wildignore+=*vendor/* diff -r 9c80955f0c6e -r 17c557de03e0 plugins/hghelp/hghelp.vim --- a/plugins/hghelp/hghelp.vim Fri Oct 31 14:24:31 2025 -0400 +++ b/plugins/hghelp/hghelp.vim Tue Nov 18 11:37:01 2025 -0500 @@ -3,7 +3,7 @@ function PopupCommand(command) let buf = term_start(a:command, {'hidden': 1, 'term_finish': 'close'}) - let winid = popup_create(buf, {'minwidth': 50, 'minheight': 20}) + let winid = popup_create(buf, {'minwidth': 120, 'minheight': 28}) endfunction function ExecuteCommand(command)