" " limp/vim/keys.vim " " Description: " Limp key bindings " " Authors: " Mikael Jansson " nmap LimpBootConnectDisplay nmap LimpDisconnect nmap LimpShutdownLisp " Eval Top: send top-level s-exp to Lisp " Eval Current: send current s-exp to Lisp " Eval Expression: send arbitrary code to Lisp nmap et EvalTop nmap ec EvalCurrent nmap ex EvalExpression " Eval Block: visual mode vmap et EvalBlock vmap ec EvalBlock vmap ex EvalBlock " SBCL Abort Reset: abort from the debugger nmap ar AbortReset " Abort Interrupt: send ^C to interpreter nmap ai AbortInterrupt " Test Current: copy current s-exp to test buffer " Test Top: copy top s-exp to test buffer nmap tc TestCurrent nmap tt TestTop " Load File: load /this/ file into Lisp " Load Any File: load whichever version of this file (.lisp not given) nmap lf LoadThisFile nmap la LoadAnyFile " Compile File: compile the current file " Compile Load File: compile, then load the current file nmap cf CompileFile nmap cl CompileAndLoadFile " Goto Test Buffer: " Goto Split: split current buffer and goto test buffer nmap gt GotoTestBuffer nmap gs GotoTestBufferAndSplit " Goto Last: return to last Lisp buffer nmap gl GotoLastLispBuffer " HyperSpec: nmap he HyperspecExact nmap hp HyperspecPrefix nmap hs HyperspecSuffix nmap hg HyperspecGrep nmap hi HyperspecFirstLetterIndex nmap hI HyperspecFullIndex nmap K HyperspecExact " Help Describe: ask Lisp about the current symbol nmap hd HelpDescribe " Mark Top: mark visual block nmap mt MarkTop " Format Current: reindent/format " Format Top: nmap fc FormatCurrent nmap ft FormatTop " Sexp Wrap: wrap the current form in a list " Sexp Peel: peel a list off the current form nmap sw SexpWrap nmap sp SexpPeel " Sexp Previous: navigate to previous s-exp " Sexp Next: navigate to previous s-exp nmap ( SexpPrevious nmap ) SexpNext " Sexp Move Back: swap this and previous s-exp " Sexp Move Forward: swap this and next s-exp nmap { SexpMoveBack nmap } SexpMoveForward " Sexp Comment: comment all the way from the top level nmap sc SexpComment " Sexp Comment Current: comment current form nmap sC SexpCommentCurrent