diff options
| author | Robert Günzler <r@gnzler.io> | 2024-05-15 09:00:31 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2024-05-15 09:00:31 +0200 |
| commit | 3dbe74f2eef627e2dc19b79fe06753d5dc09003f (patch) | |
| tree | b78d1cdab62cec9ed4bbe35447108547b935ef03 /.vim/after/ftplugin/go.lua | |
| parent | 0ab72c1113139c196115c974eadaded449002c32 (diff) | |
update nvim
Signed-off-by: Robert Günzler <r@gnzler.io>
Diffstat (limited to '.vim/after/ftplugin/go.lua')
| -rw-r--r-- | .vim/after/ftplugin/go.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.vim/after/ftplugin/go.lua b/.vim/after/ftplugin/go.lua index 94eaa0e..cda6a34 100644 --- a/.vim/after/ftplugin/go.lua +++ b/.vim/after/ftplugin/go.lua @@ -5,7 +5,7 @@ vim.keymap.set('n', '<leader>i', function() if not iface or iface == '' then return end - require('misc').word_under_cursor(function(word) + require('internal.cursor').word(function(word) vim.cmd('normal ][o') local args = { 'impl', |