> I have perl.vim installed. > > File::Path > > Suppose I have the above text in a .pl file and the cursor is on > 'Path'. When I press *, it will search for \<File::Path\>. I want vim > to search for \<Path\>. Can somebody let me know how to do it? > > If the cursor is at the beginning of 'File' and I press 'd' and 'e', > vim would delete 'File::Path' completely. But I want it delete 'File' > only. Could somebody let me know how to do this as well?
Though I'm not a Perl user, it sounds like you have ":" in your 'iskeyword' setting. This can be removed with set iskeyword-=: If it's getting set by the filetype detection of perl-scripts, you may have to put that command in an "after" script to prevent it from being overridden. To read more, consult :help 'iskeyword' :help after-directory -tim --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
