1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-02 22:58:01 +00:00

Adjust the wording of the latest til.

This commit is contained in:
jbranchaud
2015-09-12 13:35:59 -05:00
parent c7f02f7900
commit 8a22ef1c9b

View File

@@ -7,8 +7,8 @@ By default, `netrw` will use `rmdir` when deleting directories. This means
that if a directory has files in it, then it won't be deleted. `rmdir`
rightly gives an error when the target directory isn't empty.
`netrw` can be configured to use `rm -r` instead of `rmdir` when deleting
directories.
Not to worry though, `netrw` can be configured to use `rm -r` instead of
`rmdir` when deleting directories.
```
:let g:netrw_localrmdir='rm -r'