tide icon indicating copy to clipboard operation
tide copied to clipboard

Tide - TypeScript Interactive Development Environment for Emacs

Results 38 tide issues
Sort by recently updated
recently updated
newest added

(Apologies if this is known, I can't look at where exactly this is coming from...) When tide is used for a temp buffer (which means that there is no file...

When a user uses magit to extract old commits of files, magit creates buffers for these commits. These buffers are not backed by actual files. Tide is turned on in...

![EZxCjjF5CW](https://user-images.githubusercontent.com/15630634/73264699-a75cc080-41d3-11ea-8b1a-5b6051877a6f.gif) Is this normal? echo area flickers. I tried changing eldoc settings and looking for a simular issues without success. This does not happend for example in Emacs-Lisp mode with...

We also gain support for adding the @ts-ignore flag that the tsc compiler understands. This change adds logic for identifying the general type of checker from which flycheck errors are...

Not everyone uses company-mode for code completion. Another popular approach, I believe, is using `C-M-i` combination for getting a list of possible completions in another buffer. This approach works for...

enhancement
PR accepted

Note that the presentation doesn't change; only the symbol in question is highlighted, but you can now click anywhere in the line to jump to the reference location. I made...

I have the following defined for editing **.tsx** files: ``` (define-derived-mode web-tsx-mode web-mode "Web-TSX") (add-to-list 'auto-mode-alist '("\\.tsx$" . web-tsx-mode)) (add-hook 'web-tsx-mode-hook 'tide-setup) (with-eval-after-load 'flycheck (flycheck-add-mode 'tsx-tide 'web-tsx-mode)) (define-key web-tsx-mode-map (kbd...

Inline template are lint well. But when i open *.component.html buffer, it doesn't work. Is there any way to lint *.component.html files?

Is it possible to use [Auto-Complete](https://github.com/auto-complete/auto-complete) instead of Company? thanks

## Relevant Version Numbers - Tide: 20190614.1227 - TypeScript: 3.2.4 - Emacs: 26.2 ## Steps to Reproduce the Bug - create file `html.d.ts` with following content: ``` declare module '*.html';...