update test after rename

pull/10905/head
Sam Vente 5 months ago
parent c8153f4064
commit 054e7f70ed
No known key found for this signature in database

@ -16,6 +16,8 @@
| `:write-buffer-close`, `:wbc` | Write changes to disk and closes the buffer. Accepts an optional path (:write-buffer-close some/path.txt) |
| `:write-buffer-close!`, `:wbc!` | Force write changes to disk creating necessary subdirectories and closes the buffer. Accepts an optional path (:write-buffer-close! some/path.txt) |
| `:new`, `:n` | Create a new scratch buffer. |
| `:goto-mark` | Go to the selection saved in a register. Register can be provided as argument or selected register else ^ will be used |
| `:register-mark` | Save current selection into a register. Register can be provided as argument or selected register else ^ will be used |
| `:format`, `:fmt` | Format the file using the LSP formatter. |
| `:indent-style` | Set the indentation style for editing. ('t' for tabs or 1-16 for number of spaces.) |
| `:line-ending` | Set the document's default line ending. Options: crlf, lf. |

@ -83,7 +83,7 @@ async fn bookmark() -> anyhow::Result<()> {
},
// make a mark, make changes to the doc, colapse selection by going to end of doc
// then resore mark and see the selection is still good
":register_mark<space>1<ret>casdf<esc>ge:goto_mark<space>1<ret>",
":register-mark<space>1<ret>casdf<esc>ge:goto-mark<space>1<ret>",
indoc! {"\
#[|asdf]#
ipsum

Loading…
Cancel
Save