Skip to content

Commit 4344fdd

Browse files
committed
Fix chdir on :lmake
1 parent b009f16 commit 4344fdd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autoload/rails.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4634,8 +4634,8 @@ augroup railsPluginAuto
46344634
autocmd BufWritePost */generators/** call rails#cache_clear("generators")
46354635
autocmd FileType * if exists("b:rails_root") | call s:BufSettings() | endif
46364636
autocmd Syntax ruby,eruby,yaml,haml,javascript,coffee,railslog if exists("b:rails_root") | call s:BufSyntax() | endif
4637-
autocmd QuickFixCmdPre make* call s:push_chdir()
4638-
autocmd QuickFixCmdPost make* call s:pop_command()
4637+
autocmd QuickFixCmdPre *make* call s:push_chdir()
4638+
autocmd QuickFixCmdPost *make* call s:pop_command()
46394639
augroup END
46404640

46414641
" }}}1

0 commit comments

Comments
 (0)