diff --git a/lib/vim_ahk.ahk b/lib/vim_ahk.ahk index effa572..31dcdd4 100644 --- a/lib/vim_ahk.ahk +++ b/lib/vim_ahk.ahk @@ -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" diff --git a/lib/vim_ini.ahk b/lib/vim_ini.ahk index 69f37e5..adc45ef 100644 --- a/lib/vim_ini.ahk +++ b/lib/vim_ini.ahk @@ -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(){