Skip to content

Commit 8e4c46f

Browse files
committed
Update nimwasmtime version
1 parent 7694df8 commit 8e4c46f

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

nev.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ requires "https://github.com/Nimaoth/wasm3 >= 0.1.17"
3838
requires "https://github.com/Nimaoth/lrucache.nim >= 1.1.4"
3939
requires "https://github.com/Nimaoth/boxy >= 0.4.4"
4040
requires "https://github.com/Nimaoth/nimtreesitter-api >= 0.1.21"
41-
requires "https://github.com/Nimaoth/nimwasmtime#22cfeef"
41+
requires "https://github.com/Nimaoth/nimwasmtime#858ff37"
4242
requires "https://github.com/Nimaoth/nimsumtree#cc1362f"
4343
requires "https://github.com/Nimaoth/zippy >= 0.10.17"
4444

nimble.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,14 +358,14 @@
358358
},
359359
"nimwasmtime": {
360360
"version": "0.2.1",
361-
"vcsRevision": "22cfeef719757063ba951079374bee67a917c0bb",
361+
"vcsRevision": "858ff37988b9698d73221eb5c0b468be3fe44b6b",
362362
"url": "https://github.com/Nimaoth/nimwasmtime",
363363
"downloadMethod": "git",
364364
"dependencies": [
365365
"nimgen"
366366
],
367367
"checksums": {
368-
"sha1": "b583e2c45336f1d6ec6a720f3fd5638bc0337b5f"
368+
"sha1": "0eb59f2a6073c3dcf6a95fedebf65a613bc97056"
369369
}
370370
},
371371
"npeg": {

plugins/vim/vim.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ proc selectMove(editor: TextEditor, move: string, count: int = 1) {.exposeActive
359359

360360
proc deleteMove(editor: TextEditor, move: string, count: int = 1) {.exposeActive(editorContext).} =
361361
debugf"vimDeleteMove '{move}' {count}"
362-
let oldSelections = @(editor.selections.toOpenArray)
362+
let oldSelections = @(editor.selections)
363363
let (action, arg) = move.parseAction
364364
for i in 0..<max(count, 1):
365365
discard editor.command(action.ws, arg.ws)
@@ -368,7 +368,7 @@ proc deleteMove(editor: TextEditor, move: string, count: int = 1) {.exposeActive
368368

369369
proc changeMove(editor: TextEditor, move: string, count: int = 1) {.exposeActive(editorContext).} =
370370
debugf"vimChangeMove '{move}' {count}"
371-
let oldSelections = @(editor.selections.toOpenArray)
371+
let oldSelections = @(editor.selections)
372372
let (action, arg) = move.parseAction
373373
for i in 0..<max(count, 1):
374374
discard editor.command(action.ws, arg.ws)

0 commit comments

Comments
 (0)