diff options
-rw-r--r-- | ranger/config/commands.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py index 4d290e7e..00b978b9 100644 --- a/ranger/config/commands.py +++ b/ranger/config/commands.py @@ -42,9 +42,9 @@ # the user pressed 6X, self.quantifier will be 6. # self.arg(n): The n-th argument, or an empty string if it doesn't exist. # self.rest(n): The n-th argument plus everything that followed. For example, -# If the command was "search foo bar a b c", rest(2) will be "bar a b c" -# self.start(n): The n-th argument and anything before it. For example, -# If the command was "search foo bar a b c", rest(2) will be "bar a b c" +# if the command was "search foo bar a b c", rest(2) will be "bar a b c" +# self.start(n): Anything before the n-th argument. For example, if the +# command was "search foo bar a b c", start(2) will be "search foo" # # =================================================================== # And this is a little reference for common ranger functions and objects: @@ -1195,7 +1195,7 @@ class diff(Command): """ :diff - Displays a diff of selected files against last last commited version + Displays a diff of selected files against the last commited version """ def execute(self): from ranger.ext.vcs import VcsError |