diff options
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', |