toggle-debug-on-error
and am re-doing it, in the hopes I could find more details
This message is replying to a Matrix event but we were unable to find associated bridged Gitter message to put it in the appropriate threaded conversation.
I don't think there's a macro for it, but you could do (lambda (&rest _args) 42)
core.symlinks
is true, I can open the symlinked files just fine in the working tree. the mime encoding is binary
and the mime type is inode/symlink
mkdir -p ~/tmp/git-symlink-no-newline
cd ~/tmp/git-symlink-no-newline
git init
touch test.txt
ln -s test.txt link.txt
git add *
# these both show it
git diff --cached
emacs --eval '(magit-status)'
git commit -m "Test git diff symlink no newline issue"
# so do these
git show HEAD
emacs --eval '(magit-show-commit "HEAD")'
I'm scratching my head and can't figure out this one.
I have a transient with two similar functions:
(defun frame-width-shrink ()
(interactive)
(set-frame-width nil (- (frame-width) 5)))
(defun frame-width-widen ()
(interactive)
(set-frame-width nil (+ (frame-width) 5)))
(transient-define-prefix frame-size-transient ()
[("H" "shrink frame width" frame-width-shrink :transient t)
("L" "widen frame width" frame-width-widen :transient t)])
It looks totally fine, right? But my conundrum is that for some reason, widening works while shrinking doesn't. Calling the command manually - works. Evaling it - also works. If I make it ("H" "shrink frame width" frame-width-shrink :transient nil)
- it works. But I need it to be transient.
Can someone think of a reason why wouldn't it work? Specifically, it doesn't work when invoked from the transient popup. Everywhere else - it works.
EDITOR
set to stay in the terminal.
git rebase -i (git merge-base origin/master HEAD)
in order to edit commits since branch-off from master but without rebasing over new commits on master. Wondering if there's something similar in magit?
b s
, I think. so it might be an easy change
l l
or l b
), then rebase interactive (r i
) uses that commit. Granted, it doesn’t figure out the common base automatically.
g
to get the magit status buffer updated. the magit-auto-revert
mode is enabled in my config. any ideas here? thanks!
magit-refresh-status-buffer
but it doesn't seem to be working for me