Module: Vim::Flavor::ShellUtility
Instance Method Summary collapse
Instance Method Details
#sh(script) ⇒ Object
4 5 6 7 8 9 10 11 |
# File 'lib/vim-flavor/shellutility.rb', line 4 def sh script output = send(:`, script) if $? == 0 output else raise RuntimeError, output end end |