Skip to content

Commit

Permalink
chore: Bump version to v0.14.2 and update release date in VimAhk meta…
Browse files Browse the repository at this point in the history
…data

fix: Handle potential OSError when deleting ini entries in VimIni
  • Loading branch information
rcmdnk committed Dec 14, 2024
1 parent f30984c commit 99b3194
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/vim_ahk.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

class VimAhk{
__About(){
this.About.Version := "v0.14.1"
this.About.Date := "10/Dec/2024"
this.About.Version := "v0.14.2"
this.About.Date := "14/Dec/2024"
this.About.Author := "rcmdnk"
this.About.Description := "Vim emulation with AutoHotkey, everywhere in Windows."
this.About.Homepage := "https://github.com/rcmdnk/vim_ahk"
Expand Down
6 changes: 5 additions & 1 deletion lib/vim_ini.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@
this.Vim.Conf["VimTwoLetter"]["val"] := this.Vim.Conf["VimTwoLetter"]["val"] this.Vim.GroupDel L1 L2
}
}
IniDelete(this.Ini, this.Section, twoLetter)
try {
IniDelete(this.Ini, this.Section, twoLetter)
} catch OSError as e {
; pass
}
}

WriteIni(){
Expand Down

0 comments on commit 99b3194

Please sign in to comment.