This file is indexed.

/usr/bin/neovim-ruby-host is in ruby-neovim 0.7.1-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#!/usr/bin/ruby

require "neovim/host"

ARGV.each do |arg|
  break if arg == "--"

  if ["--version", "-V"].include?(arg)
    puts Neovim::VERSION
    exit(0)
  end
end

if STDIN.tty?
  abort("Can't run neovim-ruby-host interactively.")
else
  Neovim::Host.run(ARGV)
end