Foo Chuan Wei

Results 15 comments of Foo Chuan Wei

@c42f Your proposed solution does not handle this case: ``` (/ 6 #;0 2) ``` The ` 2)` part will be incorrectly highlighted as a comment. Refer to [SRFI 62:...

A solution already exists in Vim's Scheme syntax file: https://github.com/vim/vim/blob/v8.2.2663/runtime/syntax/scheme.vim#L70-L74

This plugin doesn't seem to do any indentation. Indentation seems to be handled by Vim's lisp mode. There are lots of other quirks in Vim's lisp indentation. For example, `cond`...

As mentioned in the SML/NJ mailing list, the solution for the smlnj-cm linter is to replace `CM.make` with `CM.recomp`: ```diff diff --git a/ale_linters/sml/smlnj_cm.vim b/ale_linters/sml/smlnj_cm.vim index 9ad24af4..4769f371 100644 --- a/ale_linters/sml/smlnj_cm.vim +++...

Updated patch: ```diff diff --git a/ale_linters/sml/smlnj_cm.vim b/ale_linters/sml/smlnj_cm.vim index 9ad24af4..4b418796 100644 --- a/ale_linters/sml/smlnj_cm.vim +++ b/ale_linters/sml/smlnj_cm.vim @@ -3,8 +3,9 @@ function! ale_linters#sml#smlnj_cm#GetCommand(buffer) abort let l:cmfile = ale#handlers#sml#GetCmFile(a:buffer) - - return 'sml -m...

Why was this issue closed? Almost every discussion I have read about this extension mentions this as a problem. Related: #35 (Refresh sidebar on each command typed).

This error is triggered when you flush the session in the wizard's `done` method. Check if your method does any of these: * Directly calling `request.session.flush()`, or * Calling `django.contrib.auth.logout()`...

Perhaps the solution is to edit [contrib/slime-repl.el](https://github.com/slime/slime/blob/v2.26/contrib/slime-repl.el#L991-L999) like so: ```diff diff --git a/contrib/slime-repl.el b/contrib/slime-repl.el index 5a3cba73..d0c42d99 100644 --- a/contrib/slime-repl.el +++ b/contrib/slime-repl.el @@ -991,9 +991,13 @@ If REGEXP is non-nil, only...

@Ambrevar > It seems to be a Guix issue with libcurl: > > https://issues.guix.gnu.org/issue/25240 > > I'll see what can be done. > Thanks for the details. That issue has...

Unfortunately, `file-name-all-completions` seems to return lowercase drive letters even if the argument given to it has an uppercase drive letter.