diff options
author | Zoran Plesivcak <zplesiv@gmail.com> | 2020-11-08 10:52:27 +0000 |
---|---|---|
committer | Zoran Plesivcak <zplesiv@gmail.com> | 2020-11-08 10:52:27 +0000 |
commit | bd56b2538e7ba8b6edcdb490edd8374176e55bd6 (patch) | |
tree | 9bba66673f10ce5bbc6de96e4b43ae4d27cae1f9 /doc | |
parent | a8105b082f94729669d0509f07c98aa566c0278f (diff) | |
download | ranger-bd56b2538e7ba8b6edcdb490edd8374176e55bd6.tar.gz |
Update the docs to reflect changes to code
Changes to code in: - previous commit (THIS_COMMIT^) - c826091a74e88102ca1795ab9798dd8b8498f653
Diffstat (limited to 'doc')
-rw-r--r-- | doc/rifle.1 | 4 | ||||
-rw-r--r-- | doc/rifle.pod | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/rifle.1 b/doc/rifle.1 index b3dd6373..4e213a8a 100644 --- a/doc/rifle.1 +++ b/doc/rifle.1 @@ -216,8 +216,8 @@ List all the different methods: .PP .Vb 4 \& $ rifle \-l helloworld.py -\& 0:editor::"$EDITOR" \-\- "$@" -\& 1:pager::"$PAGER" \-\- "$@" +\& 0:editor::$EDITOR \-\- "$@" +\& 1:pager::$PAGER \-\- "$@" \& 2:::python \-\- "$1" .Ve .PP diff --git a/doc/rifle.pod b/doc/rifle.pod index e0abaa3b..0cd34478 100644 --- a/doc/rifle.pod +++ b/doc/rifle.pod @@ -117,8 +117,8 @@ Specifies the directory for configuration files. Defaults to F<$HOME/.config>. List all the different methods: $ rifle -l helloworld.py - 0:editor::"$EDITOR" -- "$@" - 1:pager::"$PAGER" -- "$@" + 0:editor::$EDITOR -- "$@" + 1:pager::$PAGER -- "$@" 2:::python -- "$1" Display its content by opening it with "cat": |