From 8817bc1f251a7dcfe332b90efb5f36cddb8efb23 Mon Sep 17 00:00:00 2001 From: micbou Date: Sun, 17 Sep 2017 03:43:57 +0200 Subject: [PATCH] Remove obsolete notes in documentation --- README.md | 23 ----------------------- doc/youcompleteme.txt | 21 --------------------- 2 files changed, 44 deletions(-) diff --git a/README.md b/README.md index 693a75a0..d2d7f875 100644 --- a/README.md +++ b/README.md @@ -1406,20 +1406,6 @@ For example: Invoking this command on `s` returns `std::string => std::basic_string` -**NOTE:** Due to limitations of `libclang`, invoking this command on the word -`auto` typically returns `auto`. However, invoking it on a usage of the variable -with inferred type returns the correct type, but typically it is repeated due to -`libclang` returning that the types differ. - -For example: - -```c++ -const char *s = "String"; -auto x = &s; // invoking on x or auto returns "auto"; - // invoking on s returns "const char *" -std::cout << *x; // invoking on x returns "const char ** => const char **" -``` - **NOTE:** Causes re-parsing of the current translation unit. Supported in filetypes: `c, cpp, objc, objcpp, javascript, typescript` @@ -1527,15 +1513,6 @@ indication). **NOTE:** Causes re-parsing of the current translation unit. -**NOTE:** After applying a fix-it, the diagnostics UI is not immediately -updated. This is due to a technical restriction in Vim. Moving the cursor, or -issuing the `:YcmForceCompileAndDiagnostics` command will refresh the -diagnostics. Repeated invocations of the `FixIt` command on a given line, -however, _do_ apply all diagnostics as expected without requiring refreshing of -the diagnostics UI. This is particularly useful where there are multiple -diagnostics on one line, or where after fixing one diagnostic, another fix-it is -available. - Supported in filetypes: `c, cpp, objc, objcpp, cs` #### The `RefactorRename ` subcommand diff --git a/doc/youcompleteme.txt b/doc/youcompleteme.txt index d2ab4f73..d3fa5be9 100644 --- a/doc/youcompleteme.txt +++ b/doc/youcompleteme.txt @@ -1690,18 +1690,6 @@ For example: < Invoking this command on 's' returns 'std::string => std::basic_string' -**NOTE:** Due to limitations of 'libclang', invoking this command on the word -'auto' typically returns 'auto'. However, invoking it on a usage of the -variable with inferred type returns the correct type, but typically it is -repeated due to 'libclang' returning that the types differ. - -For example: -> - const char *s = "String"; - auto x = &s; // invoking on x or auto returns "auto"; - // invoking on s returns "const char *" - std::cout << *x; // invoking on x returns "const char ** => const char **" -< **NOTE:** Causes re-parsing of the current translation unit. Supported in filetypes: 'c, cpp, objc, objcpp, javascript, typescript' @@ -1814,15 +1802,6 @@ indication). **NOTE:** Causes re-parsing of the current translation unit. -**NOTE:** After applying a fix-it, the diagnostics UI is not immediately -updated. This is due to a technical restriction in Vim. Moving the cursor, or -issuing the |:YcmForceCompileAndDiagnostics| command will refresh the -diagnostics. Repeated invocations of the |FixIt| command on a given line, -however, _do_ apply all diagnostics as expected without requiring refreshing of -the diagnostics UI. This is particularly useful where there are multiple -diagnostics on one line, or where after fixing one diagnostic, another fix-it -is available. - Supported in filetypes: 'c, cpp, objc, objcpp, cs' -------------------------------------------------------------------------------