(data, name="")
| 267 | vim.command("echo 'no documentation found'") |
| 268 | |
| 269 | def tern_echoWrap(data, name=""): |
| 270 | text = data |
| 271 | if len(name) > 0: |
| 272 | text = name+": " + text |
| 273 | col = int(vim.eval("&columns"))-23 |
| 274 | if len(text) > col: |
| 275 | text = text[0:col]+"..." |
| 276 | vim.command("echo '{0}'".format(text)) |
| 277 | |
| 278 | def tern_lookupType(): |
| 279 | data = tern_runCommand("type") |
no outgoing calls
no test coverage detected