Nelson Loyola

Results 38 comments of Nelson Loyola

I'm not getting this error on Ubuntu 17.04 with Emacs 25.2.1. Can you try it without any other packages installed? Can you paste the traceback if there is one?

@Novantix can you add the following to your config and then try it again and attach the contents of the `*eclimd*` and `*Messages*` buffers? ```emacs-lisp (setq eclim-print-debug-messages t) ```

@bbuccianti can you try this with Emacs 26.1? I can't reproduce this end with Emacs 26.1.

I tried using `frame-selected-window` instead of `get-buffer-window` as follows: ```emacs-lisp (set-window-start (frame-selected-window) lsp-ui-peek--win-start)) ``` and it does not have the problem.

I'm using lsp-java with: * Emacs 29 * Debian 12 * Java 21.0.1 I'm experiencing the same `TimeoutException` issue when I restart emacs and open a Java file in my...

The contents of `~/.emacs.d/.hl-save` are: ``` (:global ("@Test") :local nil)% ``` Thanks

Only the ERC related buffers don't have syntax highlighting. Here is my configuration: ``` lisp (use-package hl-anything :ensure t :config (progn (hl-highlight-mode))) ``` If I join the freenode IRC server,...

I solved this by adding my own `before-save-hook`: ```elisp (defun nl/php-before-save-hook () (when (string-match-p (regexp-quote ".php") buffer-file-name) (let ((file-name (replace-regexp-in-string (projectile-project-root) "" buffer-file-name)) (command (concat php-cs-fixer-command " list-files --config "...