Looking forward to the advanced window hacking. Great content as always.
@herrpez4 жыл бұрын
Indirect buffers will let you have separate folding states. Should be built in.
@SystemCrafters4 жыл бұрын
Thank you! I couldn't remember the name of that
@perguto2 жыл бұрын
Nice video! What font are you using?
@halfacanuck2 жыл бұрын
I've been wanting something like winum since I started using Emacs! Thanks, David. BTW, for me winum's window number wouldn't show up in eshell windows, so I found what's either a workaround or actually the correct way to do things (let's find out what YT does to the formatting...): (set-default 'mode-line-format (append (list (car mode-line-format) winum--mode-line-segment) (cdr mode-line-format))) (setq winum-auto-setup-mode-line nil) The first line adds winum's mode-line segment to the, er, _default_ default mode-line (might need adjusting if you've changed your default mode-line). The second line disables winum's dynamic mode-line-changing jiggery-pokery which doesn't seem to work that well anyway. This involves using an internal winum variable which might conceivably change one day, but YOLO lol.
@xvna20364 жыл бұрын
Another nice one! For the next one about windows, maybe the shackle package would be interesting to compare with native window rules.
@SystemCrafters4 жыл бұрын
Thanks, I forgot about shackle! I'll try to include it as well in one of the window management videos.
@Sz3ntAr3 жыл бұрын
48:34 :'D this cought me off guard
@SystemCrafters3 жыл бұрын
lol, sorry about that :)
@FrederickCai4 жыл бұрын
If I have 2 windows opening the same buffer/file, can I have them narrow to different portions of the buffer separately?
@wjcferguson4 жыл бұрын
M-x clone-indirect-buffer (C-x 4 c) is the function you're looking for. It gives you an additional window on a buffer that you can narrow independently