machakann
machakann
Hi. Does it happen always when you yank? Or, in any particular case? For example, only when you yank in visual mode.
Thank you! I will check.
Hi, I tried but I couldn't reproduce the problem... If you don't mind, could you show me your vim settings which reproduces the problem in your environment?
Sorry for my long silence. I have tried to check but I couldn't reproduce the problem. As far as I observed, it seems not the conflict with other plugins. However,...
なにかしらモジュールっぽいものが欲しいとおもっていたので期待しています。 > let s:plugin = require('very#long#long#plugin') > echo s:plugin.func(42) この場合ファイル `autoload/very/long/long/plugin.vim` はどのタイミングで読み込まれるのでしょうか? `s:plugin.func(42)` の時点か、 `require('very#long#long#plugin')` の時点だと思うのですが。
重箱の隅ばかりつついて申し訳ないんですが、`require()` が循環している場合にはどうなるのが正しいんでしょうか? *autoload/a.vim* ```vim let s:b = require('b') echomsg 'This is a' function! a#a() abort return 'a' endfunction ``` *autoload/b.vim* ```vim let s:a = require('a') echomsg 'This is b' function!...
Hi, sorry for my late response. Let me make sure, just in case. 1. It should work for the whole body of `MyClass.my_function(a, b)` when the cursor is on somewhere...
FYI, you can customize "what is a function" via `textobj_functioncall_patterns`. ```vim let g:textobj_functioncall_patterns = [ \ { \ 'header' : '\
Unfortunately, there is no such functionality, but it seems convenient. I may consider including it.
> It would be nice to have a i; text object though, so I could simply: Sounds good. ```vim function! s:textobj_line_without_semicolon(a_or_i) abort if a:a_or_i is# 'a' normal! v0og_ else normal!...