From ce0ee69a91d14218351aa8b1610b1deca7f4f73c Mon Sep 17 00:00:00 2001 From: Pedro Rodriguez Date: Fri, 9 Sep 2016 22:24:06 -0400 Subject: [PATCH] Add qualified tag lookup to Haskell.vim --- ftplugin/haskell.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ftplugin/haskell.vim b/ftplugin/haskell.vim index 872a948..deec502 100644 --- a/ftplugin/haskell.vim +++ b/ftplugin/haskell.vim @@ -13,6 +13,9 @@ set wildignore+=*/cabal-dev/*,*/dist/*,*.hi,.stack-work/* nnoremap f /\(data\\|type\\|class) \<\>/I nnoremap gf :Unite -buffer-name=ack grep:.::(data\|type\|class)\ \\b +" We use hasktags, which support qualified tags +nnoremap :call TagJumpDot() + function! GetPackageForFile() let regexes = [ \ [ '/src/test', '/src/test' ],