(cls, func, *args)
| 152 | |
| 153 | @classmethod |
| 154 | def call(cls, func, *args): |
| 155 | try: |
| 156 | f = cls._func_cache[func] |
| 157 | except KeyError: |
| 158 | if IS_NVIM: |
| 159 | f = cls._func_cache[func] = getattr(vim.funcs, func) |
| 160 | else: |
| 161 | f = cls._func_cache[func] = vim.Function(func) |
| 162 | return f(*args) |
| 163 | |
| 164 | @classmethod |
| 165 | def setqflist(cls, items, title, context): |
no outgoing calls
no test coverage detected