Skip to content

Commit

Permalink
Fix for #20
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Choi committed Feb 13, 2014
1 parent 9939329 commit 4d27121
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/ri_vim.rb
Expand Up @@ -195,7 +195,7 @@ def display_class name
klasses << klass
includes << [klass.includes, store] if klass.includes
[store, klass]
rescue Errno::ENOENT
rescue Errno::ENOENT, RDoc::Store::MissingFileError
end
end.compact
return if found.empty?
Expand Down

1 comment on commit 4d27121

@wickett
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sweet! That works.

Please sign in to comment.