summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Vink <mike1994vink@gmail.com>2023-04-23 20:30:07 +0200
committerMike Vink <mike1994vink@gmail.com>2023-04-23 20:30:07 +0200
commitbb04f169c7820ce14ef908dbe1eb34af585d067e (patch)
treeafc9dc53c6f3927171047a82064b730f3e7f18b2
parent5054e04cfefeeaa1b2313173f5fcff3f709f1b01 (diff)
fixup
-rw-r--r--compiler/racket.vim3
-rw-r--r--fnl/conf/init.fnl2
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>")