nverno

Results 16 comments of nverno

+1 bump, just stumbled across this issue with "$N" variables in awk-mode as well. Simple fix is just to `(modify-syntax-entry ?$ "'" awk-mode-syntax-table)` or provide a custom `ggtags-bounds-of-tag-function`. `$` probably...

I ended up implementing a wrapper around `comint-redirect-send-command-to-process`, so something like `(utop-redirect-output "module type S = module type of UTop" "*utop-output*" nil)` will dump the output into a buffer named...

I would, but this is more of a hack than a proper solution since I didn't want to change any of the current code, eg. maybe add another state for...

I think this issue can be closed now? Related, but different issues with start/stop elimd #100 and #101

I wonder if this issue is related to https://github.com/ocaml/tuareg/issues/223. What happens if you set (defalias 'ggtags-fontify-code #'ignore)

`ess` sets a buffer-local value, the consensus there being the ordering of backends is important, so it is best not to pollute the global binding

This is often not the case, eg. `python-mode`. But, the beg/end-of-defun functions are buggy

I agree with you about `-*eval-defun`. I don't think there is a general consensus on the beg/end-of-defun functions with respect to nested functions? I just ported python's implementation given the...

I also really like the completion working in the middle of symbols, as it does in elisp.

> I would prefer to keep the concept of completion and abbrevs separate conceptually and possibly > bind some other easily accessible key combination to expand-abbrev. Thoughts? Agreed, I think...