Fix code examples in plugins README

This commit is contained in:
Anna Arad 2019-10-23 16:55:57 +03:00 committed by GitHub
parent 9afd7cf3bf
commit b81affffa1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -109,7 +109,7 @@ There are many plugins provided by `nnn` which can be used as examples. Here are
- Change to directory in clipboard using helper script
```sh
#!/usr/bin/env sh
. $(dirname $0/.nnn-plugin-helper)
. $(dirname $0)/.nnn-plugin-helper
nnn_cd "$(xsel -ob)"
```
@ -117,7 +117,7 @@ There are many plugins provided by `nnn` which can be used as examples. Here are
- Change direcory to the location of a link using helper script with specific context (current)
```sh
#!/usr/bin/env sh
. $(dirname $0/.nnn-plugin-helper)
. $(dirname $0)/.nnn-plugin-helper
nnn_cd "$(dirname $(readlink -fn $1))" 0
```