Hi list. Try below:
C:\temp>grep Matsumoto c:/vim/src/*.c > list C:\temp>vim list And you can see: c:/vim/src/gui_w48.c:1228: * forcedly redrawn. (Yasuhiro Matsumoto) */ c:/vim/src/gui_w48.c:1925: /* added for non-MS IME (Yasuhiro Matsumoto) */ Then, type gf or gF on left side at first line. As you know, isfname contains ":" on windows. So vim occur "E447: Can't find file ...". (NOTE: don't say "you can do it with :cfile", this is a problem about gf/gF) This is not useful. I wrote a patch for this problem. https://gist.github.com/mattn/9388140 I tested below: http://www.google.com/ => HTML content(OK) http:/ssdfsdf => E447 Can't find file "http:/ssdfsdf" (OK) http:/ssdfsdf/ => E447 Can't find file "http:/ssdfsdf/" (OK) p:/ssdfsdf => E447 Can't find file "p:/ssdfsdf" (OK) p:/ssdfsdf/ => E447 Can't find file "p:/ssdfsdf/" (OK) _:/ssdfsdf/ => E447 Can't find file "_:/ssdfsdf/" (OK) _:ssdfsdf/ => E447 Can't find file "_:ssdfsdf/" (OK) :ssdfsdf/ => E447 Can't find file ":ssdfsdf/" (OK) c:/vim/src/gui_w48.c:1228: => Open the file(OK) c:/vim/src/gui_w48.c:1925: => Open the file(OK) ../../../vim/src/gui_w48.c:1925: => Open the file(OK) :::foo::: => E447 Can't find file ":::foo:::" (OK) Please check. Thanks. - Yasuhiro Matsumoto -- -- You received this message from the "vim_dev" 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_dev" 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.
