Skip to content

Commit 99b3194

Browse files
committed
chore: Bump version to v0.14.2 and update release date in VimAhk metadata
fix: Handle potential OSError when deleting ini entries in VimIni
1 parent f30984c commit 99b3194

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

lib/vim_ahk.ahk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
class VimAhk{
2222
__About(){
23-
this.About.Version := "v0.14.1"
24-
this.About.Date := "10/Dec/2024"
23+
this.About.Version := "v0.14.2"
24+
this.About.Date := "14/Dec/2024"
2525
this.About.Author := "rcmdnk"
2626
this.About.Description := "Vim emulation with AutoHotkey, everywhere in Windows."
2727
this.About.Homepage := "https://github.com/rcmdnk/vim_ahk"

lib/vim_ini.ahk

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@
5353
this.Vim.Conf["VimTwoLetter"]["val"] := this.Vim.Conf["VimTwoLetter"]["val"] this.Vim.GroupDel L1 L2
5454
}
5555
}
56-
IniDelete(this.Ini, this.Section, twoLetter)
56+
try {
57+
IniDelete(this.Ini, this.Section, twoLetter)
58+
} catch OSError as e {
59+
; pass
60+
}
5761
}
5862

5963
WriteIni(){

0 commit comments

Comments
 (0)