# HG changeset patch # User Steve Losh # Date 1518196619 18000 # Node ID 665fffea183b1b22f502026c47fd9c2e226411b1 # Parent 9469fc3d271f48c71af5814a4545a7fb90c70621 More diff -r 9469fc3d271f -r 665fffea183b bin/sbcl-raw --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin/sbcl-raw Fri Feb 09 12:16:59 2018 -0500 @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +set -e +/usr/local/bin/sbcl --noinform "$@" diff -r 9469fc3d271f -r 665fffea183b bin/sbcl-vlime-raw --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin/sbcl-vlime-raw Fri Feb 09 12:16:59 2018 -0500 @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +set -e +sbcl-raw --eval "(load \"~/lib/dotfiles/vim/bundle/vlime/lisp/start-vlime.lisp\")" "$@" diff -r 9469fc3d271f -r 665fffea183b lispwords --- a/lispwords Sat Jan 20 15:38:38 2018 -0500 +++ b/lispwords Fri Feb 09 12:16:59 2018 -0500 @@ -106,3 +106,6 @@ ; ppcre (2 register-groups-bind) + +; lparallel +(1 pdotimes) diff -r 9469fc3d271f -r 665fffea183b vim/vimrc --- a/vim/vimrc Sat Jan 20 15:38:38 2018 -0500 +++ b/vim/vimrc Fri Feb 09 12:16:59 2018 -0500 @@ -998,6 +998,11 @@ function! OpenLispReplSBCL() "{{{ NeoRepl sbcl-vlime endfunction "}}} + +function! OpenLispReplSBCLRaw() "{{{ + NeoRepl sbcl-vlime-raw +endfunction "}}} + function! OpenLispReplCCL() "{{{ NeoRepl ccl-vlime endfunction "}}} @@ -1222,6 +1227,7 @@ au FileType lisp nnoremap Oc :call OpenLispReplCCL() au FileType lisp nnoremap Oe :call OpenLispReplECL() au FileType lisp nnoremap Oa :call OpenLispReplABCL() + au FileType lisp nnoremap Ors :call OpenLispReplSBCLRaw() " Misc mappings " au FileType lisp nnoremap gi :call IndentToplevelLispForm()