From 8bb410f104fe9e45e463742355784638f1a327ad Mon Sep 17 00:00:00 2001 From: David Halter Date: Fri, 31 Aug 2012 17:01:14 +0200 Subject: [PATCH] refined NotFoundError doc --- jedi.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jedi.vim b/jedi.vim index 3fa8c3d..949d78b 100644 --- a/jedi.vim +++ b/jedi.vim @@ -88,7 +88,7 @@ if 1: try: definitions = functions.goto(source, row, column, buf_path) except functions.NotFoundError: - echo_highlight("Couldn't find a place to goto.") + echo_highlight("Cannot follow nothing. Put your cursor on a valid name.") except Exception: # print to stdout, will be in :messages echo_highlight("Some different eror, this shouldn't happen.")