You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using treemacs-select-window I notice a different behavior before and after lsp-treemacs-errors-list.
Save the following file as test.el.
(package-initialize)
(treemacs)
(treemacs-select-window)
(find-file"x1.el")
(split-window-below)
(find-file"x2.el")
(defunjump ()
(dolist (i '(12345678910))
(treemacs-select-window)
(message"%s" (buffer-name))))
(message"=== Before lsp-treemacs-errors-list ===")
(jump)
(lsp-treemacs-errors-list)
(treemacs-quit)
(message"=== After lsp-treemacs-errors-list ===")
(jump)
Run emacs -Q -l test.el.
This is the message buffer:
=== Before lsp-treemacs-errors-list ===
*Treemacs-Scoped-Buffer-#<frame *scratch* - GNU Emacs at home 0x5614b6bad810>*
x2.el
*Treemacs-Scoped-Buffer-#<frame *scratch* - GNU Emacs at home 0x5614b6bad810>*
x2.el
*Treemacs-Scoped-Buffer-#<frame *scratch* - GNU Emacs at home 0x5614b6bad810>*
x2.el
*Treemacs-Scoped-Buffer-#<frame *scratch* - GNU Emacs at home 0x5614b6bad810>*
x2.el
*Treemacs-Scoped-Buffer-#<frame *scratch* - GNU Emacs at home 0x5614b6bad810>*
x2.el
=== After lsp-treemacs-errors-list ===
x1.el
*Treemacs-Scoped-Buffer-#<frame *scratch* - GNU Emacs at home 0x5614b6bad810>*
x2.el
x1.el
*Treemacs-Scoped-Buffer-#<frame *scratch* - GNU Emacs at home 0x5614b6bad810>*
x2.el
x1.el
*Treemacs-Scoped-Buffer-#<frame *scratch* - GNU Emacs at home 0x5614b6bad810>*
x2.el
x1.el
You see that treemacs-select-window switches between Treemacs window and x2.el window at the beginning. But this changes after running lsp-treemacs-errors-list. Now treemacs-select-window switches between all windows, i.e. Treemacs, x1.el, x2.el.
The text was updated successfully, but these errors were encountered:
Using
treemacs-select-window
I notice a different behavior before and afterlsp-treemacs-errors-list
.Save the following file as
test.el
.Run
emacs -Q -l test.el
.This is the message buffer:
You see that
treemacs-select-window
switches between Treemacs window and x2.el window at the beginning. But this changes after runninglsp-treemacs-errors-list
. Nowtreemacs-select-window
switches between all windows, i.e. Treemacs, x1.el, x2.el.The text was updated successfully, but these errors were encountered: