Skip to content

Commit

Permalink
Fix r digit
Browse files Browse the repository at this point in the history
  • Loading branch information
nosami committed Feb 5, 2017
1 parent 3a67da6 commit 1e26600
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion XSVim/Properties/AddinInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ open Mono.Addins.Description
[<assembly:Addin (
"XSVim",
Namespace = "XSVim",
Version = "0.12"
Version = "0.13"
)>]

[<assembly:AddinName ("Vim")>]
Expand Down
1 change: 1 addition & 0 deletions XSVim/XSVim.fs
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,7 @@ type XSVim() =
let keyList = state.keys
let multiplier, keyList =
match keyList with
| "r" :: _ -> 1, keyList
// d2w -> 2, dw
| c :: OneToNine d1 :: Digit d2 :: Digit d3 :: Digit d4 :: t ->
d1 * 1000 + d2 * 100 + d3 * 10 + d4, c::t
Expand Down

0 comments on commit 1e26600

Please sign in to comment.