hongyi-zhao

Results 160 comments of hongyi-zhao

Another issue: Unable to adjust the size of all buffer windows horizontally by dragging and dropping. I found some discussion [here](https://github.com/emacs-lsp/dap-mode/issues/443), but still can't figure out the solution.

I've tried with the following configuration, but still can't solve the problem: ```emacs-lisp (use-package treemacs :config (setq treemacs-width-is-initially-locked nil) ) ```

> For 1 use `M-x comint-clear-buffer` Yes. It doesn't the trick. Thank you for letting me know this trick.

> What is treemacs-width-is-initially-locked? `C-h o treemacs-width-is-initially-locked RET' ```emacs-lisp treemacs-width-is-initially-locked is a variable defined in ‘treemacs-customization.el’. Its value is nil Original value was t Indicates whether the width of the...

> Then check the value of `window-size-fixed` in that buffer. ![image](https://user-images.githubusercontent.com/11155854/136323213-96a5afb8-32c8-4df5-969c-8a703b725b62.png) > Also, there is treemacs-toggle-fixed-width to enable resizing. Got the following message: `[Treemacs] There is no treemacs buffer in...

I just put the point in the python code window, and then call `treemacs-toggle-fixed-width`. Now, I restart Emacs and then call the command again. Even the above message doesn't appear,...

Got it. I figured out the following configuration, which is adapted from [here](https://github.com/Alexander-Miller/treemacs/issues/41#issuecomment-496276960): ```emacs-lisp (use-package treemacs :commands (treemacs treemacs-follow-mode treemacs-filewatch-mode treemacs-fringe-indicator-mode) :bind (("" . treemacs) ("" . treemacs-select-window)) :init (when...

The problem is that the scripts to be sourced are symlinks pointing to somewhere outside of the custom folder. And I have already some other naming specifications for these scripts....

Any I have more scripts in the custom folder which maybe startwith alphabets, in this case, they will be sourced after number-beginning ones. Regards

Thanks a lot. This is more graceful then my idea and still can solve my problem. Thanks for you suggestions. I mainly use some code like the following in the...