From bec04aaa047e24763ca5e6f3804976bf451f8492 Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Sun, 5 May 2013 09:49:37 -0700 Subject: [PATCH] Updating docs to mention Python GoTo* support --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ddfc5b6e..78f2cf53 100644 --- a/README.md +++ b/README.md @@ -64,8 +64,8 @@ features plus extra: - neocomplcache YCM also provides semantic go-to-definition/declaration commands for C-family -languages. Expect more IDE features powered by the various YCM semantic engines -in the future. +languages & Python. Expect more IDE features powered by the various YCM semantic +engines in the future. You'll also find that YCM has filepath completers (try typing `./` in a file) and a completer that integrates with [UltiSnips][]. @@ -513,7 +513,7 @@ The various `GoTo*` subcommands add entries to Vim's `jumplist` so you can use Looks up the symbol under the cursor and jumps to its declaration. -Supported in filetypes: `c, cpp, objc, objcpp` +Supported in filetypes: `c, cpp, objc, objcpp, python` ### The `GoToDefinition` subcommand @@ -524,7 +524,7 @@ the definition of the symbol is in the current translation unit. A translation unit consists of the file you are editing and all the files you are including with `#include` directives (directly or indirectly) in that file. -Supported in filetypes: `c, cpp, objc, objcpp` +Supported in filetypes: `c, cpp, objc, objcpp, python` ### The `GoToDefinitionElseDeclaration` subcommand @@ -532,7 +532,7 @@ Looks up the symbol under the cursor and jumps to its definition if possible; if the definition is not accessible from the current translation unit, jumps to the symbol's declaration. -Supported in filetypes: `c, cpp, objc, objcpp` +Supported in filetypes: `c, cpp, objc, objcpp, python` Options