W dniu piątek, 17 stycznia 2014 05:41:56 UTC+1 użytkownik Yggdroot Chen napisał: > 在 2014年1月17日星期五UTC+8上午3时51分41秒,Marcin Bednarek写道: > > > Hello, > > > > > > In .vimrc I have the following lines: > > > > > > set path=** > > > set suffixesadd=.php > > > set wildmode=longest,list > > > set wildmenu > > > set > > wildignore+=tmp\*,*.swp,*.zip,*.exe,*\.settings\*,\.classpath,\.project,*.class,\.springBeans,bin\*,target\*,*.jar,*\.git\* > > > > > > My project has 4153 php files. When I type command :find Request and hit > > <TAB> key it takes few seconds to get list of found classes which have > > Request in their name. Is there any parameter which could be set or any > > other solution which could help to present find command results immediately > > after hitting <TAB> key? > > > > > > Thanks, > > > > > > Marcin > > > > you can use plugin such as ctrlp and https://github.com/Yggdroot/LeaderF, the > latter is still under development.
On my machine I use ctags and ctrlp plugin and indeed both of these tools work much faster than builtin find command. Results from command: "find . -name 'Request*.php'" are also returned immediately. I thought that maybe there is a way to configure builtin find to improve its performance. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_use" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
