From 91afbab458e72f50aeb1c918665d4281490d9e39 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Thu, 4 Dec 2014 15:49:58 +0200 Subject: [PATCH] Fix typos, improve grammar --- README | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README b/README index ebd45c6..387d351 100644 --- a/README +++ b/README @@ -1,16 +1,16 @@ This is a mirror of http://www.vim.org/scripts/script.php?script_id=2087 This plugin contains some basic refactoring commands for C/C++. -For the complexity of C++, instead of really parse the source code, I used +For the complexity of C++, instead of really parsing the source code, I used regular expression matches. But it works well as I tested. -NOTE: It doesn't work for old style parameter declaratoins! And I admit that it may mess up your code sometime if you occasionally forget the rules. Thanks for the kind man who point out this. +NOTE: It doesn't work for old style parameter declarations! And I admit that it may mess up your code sometime if you occasionally forget the rules. Thanks for the kind man who pointed out this. The refactor commands and their default key map currently are: 1. e Extract method 2. p local variable to Parameter - 3. r Rename local variable + 3. r Rename local variable 4. d Delete parameter 5. o reOrder parameters 6. c introduce Constant