|
4 | 4 | from dataclasses import dataclass, field
|
5 | 5 | from typing import List
|
6 | 6 |
|
7 |
| -from nvim_doc_tools import (LuaParam, Vimdoc, VimdocSection, generate_md_toc, |
8 |
| - indent, leftright, parse_functions, read_nvim_json, |
9 |
| - read_section, render_md_api, render_vimdoc_api, |
10 |
| - replace_section, wrap) |
| 7 | +from nvim_doc_tools import ( |
| 8 | + LuaParam, |
| 9 | + Vimdoc, |
| 10 | + VimdocSection, |
| 11 | + generate_md_toc, |
| 12 | + indent, |
| 13 | + leftright, |
| 14 | + parse_functions, |
| 15 | + read_nvim_json, |
| 16 | + read_section, |
| 17 | + render_md_api, |
| 18 | + render_vimdoc_api, |
| 19 | + replace_section, |
| 20 | + wrap, |
| 21 | +) |
11 | 22 | from nvim_doc_tools.vimdoc import format_vimdoc_params
|
12 | 23 |
|
13 | 24 | HERE = os.path.dirname(__file__)
|
@@ -217,16 +228,17 @@ def get_trash_vimdoc() -> "VimdocSection":
|
217 | 228 | the `toggle_trash` action (bound to `g\\` by default). You can view all files
|
218 | 229 | in the trash with `:Oil --trash`.
|
219 | 230 |
|
220 |
| -To restore files, simply delete them from the trash and put them in the desired destination, the same as any other file operation. If you delete files from |
221 |
| -the trash they will be permanently deleted (purged). |
| 231 | +To restore files, simply delete them from the trash and put them in the desired |
| 232 | +destination, the same as any other file operation. If you delete files from the |
| 233 | +trash they will be permanently deleted (purged). |
222 | 234 |
|
223 | 235 | Linux:
|
224 | 236 | Oil supports the FreeDesktop trash specification.
|
225 | 237 | https://specifications.freedesktop.org/trash-spec/trashspec-1.0.html
|
226 | 238 | All features should work.
|
227 | 239 |
|
228 | 240 | Mac:
|
229 |
| - Oil has limited support for MacOS due to the prioprietary nature of the |
| 241 | + Oil has limited support for MacOS due to the proprietary nature of the |
230 | 242 | implementation. The trash bin can only be viewed as single dir
|
231 | 243 | (instead of being able to see files that were trashed from a directory).
|
232 | 244 |
|
|
0 commit comments