Skip to content

Commit

Permalink
辞書登録後におかしくなるのはコイツのせいだった
Browse files Browse the repository at this point in the history
  • Loading branch information
utubo committed Nov 30, 2024
1 parent 57e0587 commit 88e5029
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .vim/autoload/vimrc/git.vim
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ export def Commit(a: string)
ec system($'git commit -m {shellescape(a)}')
enddef
export def TagPush(a: string)
ec system($'git tag "{shellescape(a)}"')
ec system($'git push origin "{shellescape(a)}"')
ec system($'git tag {shellescape(a)}')
ec system($'git push origin {shellescape(a)}')
enddef
2 changes: 1 addition & 1 deletion .vim/autoload/vimrc/lazyload.vim
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ midasi: [':', 'Q'],
}
g:vim9skk_mode = ''
nn ;j i<Plug>(vim9skk-enable)
au vimrc ModeChanged [ic]:* au SafeState * ++once vim9skk#Disable()
au vimrc ModeChanged [ic]:n au SafeState * ++once vim9skk#Disable()
au vimrc User Vim9skkInitPre vimrc#vim9skk#ApplySettings()
Each onoremap,xnoremap ab <Plug>(textobj-multiblock-a)
Each onoremap,xnoremap ib <Plug>(textobj-multiblock-i)
Expand Down
4 changes: 2 additions & 2 deletions src/.vim/autoload/vimrc/git.src.vim
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ export def Commit(msg: string)
enddef

export def TagPush(tagname: string)
echo system($'git tag "{shellescape(tagname)}"')
echo system($'git push origin "{shellescape(tagname)}"')
echo system($'git tag {shellescape(tagname)}')
echo system($'git push origin {shellescape(tagname)}')
enddef

# 以下はvimrcで定義する
Expand Down
2 changes: 1 addition & 1 deletion src/.vim/autoload/vimrc/lazyload.src.vim
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ g:vim9skk = {
g:vim9skk_mode = '' # statuslineでエラーにならないように念の為設定しておく
nnoremap ;j i<Plug>(vim9skk-enable)
# インサートモードが終わったらオフにする
au vimrc ModeChanged [ic]:* au SafeState * ++once vim9skk#Disable()
au vimrc ModeChanged [ic]:n au SafeState * ++once vim9skk#Disable()
## 見出しモードでスタートする
#au vimrc User Vim9skkEnter feedkeys('Q')
# AZIKライクな設定とか
Expand Down

0 comments on commit 88e5029

Please sign in to comment.