Skip to content

Commit 5b8a5a8

Browse files
committed
refactor: standardize Vim object reference casing from 'vim' to 'Vim'
1 parent 595b9eb commit 5b8a5a8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/vim_move.ahk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
this.Zero()
2828
this.ShiftDown()
2929
this.Up()
30-
this.vim.state.setmode("Vim_VisualLine")
30+
this.Vim.state.setmode("Vim_VisualLine")
3131
}
3232

3333
if(this.Vim.State.IsCurrentVimMode("Vim_VisualLineFirst")) and (Key == "j" or Key == "^d" or Key == "^f" or Key == "+g"){
34-
this.vim.state.setmode("Vim_VisualLine")
34+
this.Vim.state.setmode("Vim_VisualLine")
3535
}
3636

3737
if(this.Vim.State.StrIsInCurrentVimMode("Vim_ydc")) and (Key == "k" or Key == "^u" or Key == "^b" or Key == "g"){

lib/vim_setting.ahk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ class VimSetting Extends VimGui{
167167
this.Obj.Submit()
168168
this.VimV2Conf()
169169
this.Vim.Setup()
170-
this.vim.Ini.WriteIni()
170+
this.Vim.Ini.WriteIni()
171171
this.Hide(Obj)
172172
}
173173

0 commit comments

Comments
 (0)