Mercurial > vim
changeset 9:17c557de03e0
Updated commit window
Including vendor files in fuzy search
| author | Luka Sitas <lsitas@avatarasoftware.com> |
|---|---|
| date | Tue, 18 Nov 2025 11:37:01 -0500 |
| parents | 9c80955f0c6e |
| children | b95a8e2525cc |
| files | .vimrc plugins/ctrlp plugins/hghelp/hghelp.vim |
| diffstat | 3 files changed, 9 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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 <C-a> <C-x><C-i> +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
--- 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/*
--- 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)
