context_filetype.vim icon indicating copy to clipboard operation
context_filetype.vim copied to clipboard

Context filetype library for Vim script

Results 2 context_filetype.vim issues
Sort by recently updated
recently updated
newest added

今すぐやるわけではないですが覚書程度につくっておきます。 #### メリット - context_filetype.vim プラグインに依存しなくなる #### デメリット - vital-context_filetype(仮)に設定をした場合、使用している各プラグインの vital-context_filetype モジュールを更新する必要がある #### 課題・問題点 - `g:context_filetype#filetypes` 等のグローバルオプションの扱いをどうするか

正規表現エンジン NFA を使用している場合に `context_filetype#get()` が遅くなるケースがあったので報告しておきます。 同じバッファで処理時間を測ってみた場合、以下のようになりました。 | 行位置 | NFAの有無 | 処理時間(ms) | | --- | --- | --- | | 1000 | なし | 0.0019 | | 1000 |...