diff options
| -rw-r--r-- | compiler/racket.vim | 3 | ||||
| -rw-r--r-- | fnl/conf/init.fnl | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/compiler/racket.vim b/compiler/racket.vim index 4a3227b..93b2623 100644 --- a/compiler/racket.vim +++ b/compiler/racket.vim @@ -14,12 +14,13 @@ endif " But in order to use it in efm we need to replace \ by %\ and % by %% -CompilerSet makeprg=racket\ -l\ errortrace +CompilerSet makeprg=compile\ racket CompilerSet errorformat=\%Z%*\\S%.%#, \%C\ \ \ %f:%l:%c, \%C\ \ \ %f:%l:%c:\ %m, \%C\ \ %.%#%\\%%(at\:%\\\|in\:%\\\|expected\:%\\\|given\:%\\)%\\@=%m, \%C\ %.%#, \%E%\\%%(%\\w%\\)%\\@=%f:%*\\d:%*\\d:\ %m, + \%E%\\%%(%\\w\+:%\\)%\\@=%m, \%E%*\\f:%*\\d:%*\\d:\ %m, " vim: sw=2 sts=2 et diff --git a/fnl/conf/init.fnl b/fnl/conf/init.fnl index 28247f1..18b8561 100644 --- a/fnl/conf/init.fnl +++ b/fnl/conf/init.fnl @@ -19,7 +19,7 @@ (let [map vim.keymap.set] (map :t :<c-s> "<c-\\><c-n>") ;; pausing and continueing printing output is not necessary inside neovim terminal right? - (map :t :<c-q> "<c-\\><c-n>") + (map :t :<c-q> "<c-\\><c-n>:q<cr>") (map :n :<leader>qo ":copen<cr>") (map :n :<leader>qc ":cclose<cr>") (map :n :<leader>lo ":lopen<cr>") |
