#!/bin/bash # Nekthuth plugin # Author="Frank Duncan " Revision=1.0 Date="26 June 2009" Description="Send a string through the nekthuth, with the return printed in the message area. Downside of this is that you can't send the string (print \"HI\"), as the interpolation of gets messed up." vim << VIMEND command! -nargs=* NekthuthDo python print lispSendReceive('d', "") VIMEND lisp << LISPEND (nekthuth:register-command #\d (lambda (msg) (eval msg))) LISPEND