Use tags with ALE #4770
Use tags with ALE
#4770
-
Hi, I know nothing about text editors and stuff. I use nvim. When I ran the command The problem is that it's too boring to keep typing that out, so I thought by using
I use Deno, everything works except for this tag thing. Please help. |
Beta Was this translation helpful? Give feedback.
Answered by
motato1
May 22, 2024
Replies: 2 comments 2 replies
-
Could you help sir? Thanks. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I haven't used ALE in a while but it seems like you don't have overridden the default
Ctrl-]
mapping to use the ALE functoin instead.nmap Ctrl-] <Plug>(ale_go_to_implementation)
(it's important to usenmap
notnnoremap
)ALE has options to open the implementation in a split window or a new tab. Check
:help ALEGoToImplementation
for more info.I haven't tested this thoroughly, but I hope this works for you.