yuki yano
yuki yano
Thanks for the PR. I'm a little busy, so I'll try to do a review in my free time. The CI was not running against the PR, so I just...
It doesn't seem to work when multiple arguments are passed to FromResources. It may be environment dependent, but can you confirm that it works? I think this patch should work...
I haven't finished reviewing it yet, but is it mandatory to change the `fzfOptionsToString` to `fzfOptionsToStringArray`? If it's not required, I'd like to incorporate it in another amendment.
When I try it on my friend's environment, it seems that space-separated arguments are converted to a comma-separated list. This is the behavior on Windows 10 + gVim with coc...
Execute `:CocCommand fzf-preview.FromResources buffer mru` `console.log(args)` Mac: `['buffer', 'mru']` Windows `['buffer,mru']`
We not making much progress, so I'm going to use the PR as a guide to fix this on my end.
Thanks. I don't have Windows, but would welcome a PR as long as it doesn't break the Mac and Linux environment.
Sorry for the delay in replying. I don't know much about ctrlspace, so I'll have to check and see if it's possible. I will check when I have time, but...
Hmm, I think it would be difficult to reimplement the ctrlspace feature, both in terms of the plugin concept and implementation. The API seems to be provided, so I'll look...
``` histdel({history} [, {item}]) *histdel()* {history}の内容を削除する。例えば全てのエントリを消すこともで きる。{history}の部分に可能な値は|hist-names|を参照。 パラメーター{item}が文字列に評価される場合、これは正規表現と して扱われる。その表現にマッチする全てのエントリがhistoryから 削除される(複数あっても)。 "\c" をつけない場合、大文字・小文字が一致しなければならない。 |/\c|。 {item}が数値に評価される場合、インデックスとして解釈される。イ ンデックスについては|:history-indexing|を参照。関連するエント リ{訳注: The respective entry}も、存在すれば削除される。 結果は数値: 削除に成功すれば1を、そうでなければ0が返る。 ```