Skip to content

Commit

Permalink
Fix (Yohannfra#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelrojasmiliani committed Dec 3, 2023
1 parent 247694e commit 46d69c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/goto_header.vim
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ function! goto_header#Switch()
\ ".*.cpp$" : (g:goto_header_associate_cpp_h) ? ".h" : ".hpp",
\ ".*.hpp$" : ".cpp",
\ ".*.c$" : ".h",
\ ".*.h$" : ".c",
\ ".*.h$" : (g:goto_header_associate_cpp_h)? ".cpp" : ".c",
\}

for key in keys(extensions_dict)
Expand Down

0 comments on commit 46d69c0

Please sign in to comment.