Skip to content

Commit

Permalink
generate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mangas committed Nov 17, 2022
1 parent d95ef77 commit 272f141
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion book/src/generated/typable-cmd.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
| `:show-directory`, `:pwd` | Show the current working directory. |
| `:encoding` | Set encoding. Based on `https://encoding.spec.whatwg.org`. |
| `:reload` | Discard changes and reload from the source file. |
| `:reload-all`, `:ra` | Discard changes and reload all documents from the source file. |
| `:reload-all` | Discard changes and reload all documents from the source files. |
| `:update` | Write changes only if the file has been modified. |
| `:lsp-workspace-command` | Open workspace command picker |
| `:lsp-restart` | Restarts the Language Server that is in use by the current doc |
Expand Down
14 changes: 7 additions & 7 deletions helix-term/src/commands/typed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1046,22 +1046,22 @@ fn reload_all(
let scrolloff = cx.editor.config().scrolloff;
let view_id = view!(cx.editor).id;

let docs_views: Vec<(DocumentId, Vec<ViewId>)> = cx
let docs_view_ids: Vec<(DocumentId, Vec<ViewId>)> = cx
.editor
.documents_mut()
.map(|doc| {
let mut views: Vec<_> = doc.selections().keys().cloned().collect();
let mut view_ids: Vec<_> = doc.selections().keys().cloned().collect();

if views.is_empty() {
if view_ids.is_empty() {
doc.ensure_view_init(view_id);
views = vec![view_id];
view_ids.push(view_id);
};

(doc.id(), views)
(doc.id(), view_ids)
})
.collect();

for (doc_id, view_ids) in docs_views {
for (doc_id, view_ids) in docs_view_ids {
let doc = doc_mut!(cx.editor, &doc_id);

// Every doc is guaranteed to have at least 1 view at this point.
Expand Down Expand Up @@ -2098,7 +2098,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
TypableCommand {
name: "reload-all",
aliases: &[],
doc: "Discard changes and reload all documents from the source file.",
doc: "Discard changes and reload all documents from the source files.",
fun: reload_all,
completer: None,
},
Expand Down

0 comments on commit 272f141

Please sign in to comment.