You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using Ruby 3.2, when reading the RI documentation from the local file, there's a call to File.exists?(path) on line 51 in ./plugin/ri_vim.rb, which is no longer a valid method. Changing this to File.exist?(path) fixes the issue.
The text was updated successfully, but these errors were encountered:
Using Ruby 3.2, when reading the RI documentation from the local file, there's a call to
File.exists?(path)
on line 51 in./plugin/ri_vim.rb
, which is no longer a valid method. Changing this toFile.exist?(path)
fixes the issue.The text was updated successfully, but these errors were encountered: