Skip to content

Commit

Permalink
Merge pull request #4 from rafaelrojasmiliani/fix(#2)
Browse files Browse the repository at this point in the history
Fix (#2)
  • Loading branch information
Yohannfra authored Dec 3, 2023
2 parents 247694e + 46d69c0 commit 3b3569b
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 3b3569b

Please sign in to comment.