We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems to only happen with (setq line-reminder-show-option 'indicators), let's say, with the following setup:
(setq line-reminder-show-option 'indicators)
(setq line-reminder-show-option 'indicators) (setq line-reminder-bitmap 'filled-rectangle) (transient-mark-mode -1)
Step to reproduce:
;; This buffer is...
T
This
C-SPC
.
;; Thi.s buffer is...
r
buffer
C-w
kill-region
Result: The text between . and r is killed. The resulting text become ;; Thi. is.
;; Thi. is
Expected Result: The text becomes ;; is. This is because the mark were set to where T is in step 2.
;; is
The text was updated successfully, but these errors were encountered:
Hmm... just notice this bug. Thanks for the report. ❤️ I guess I would never know this since I always have transient-mark-mode enabled. 😅
transient-mark-mode
I might need to further investigate the issue since this is most likely a conflict with other plugin, which is transient-mark-mode in this case. 👍
Sorry, something went wrong.
No branches or pull requests
It seems to only happen with
(setq line-reminder-show-option 'indicators)
, let's say, with the following setup:Step to reproduce:
;; This buffer is...
T
in theThis
and make a mark usingC-SPC
.
, so that now the first line become;; Thi.s buffer is...
r
inbuffer
C-w
to runkill-region
Result:
The text between
.
andr
is killed. The resulting text become;; Thi. is
.Expected Result:
The text becomes
;; is
. This is because the mark were set to whereT
is in step 2.The text was updated successfully, but these errors were encountered: