The Lambda Lab
/
projects
/
lurk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8cb83e0
)
Fixed issue with being able to insert chars into the prompt.
author
plugd
<plugd@thelambdalab.xyz>
Thu, 15 Jul 2021 14:01:49 +0000
(16:01 +0200)
committer
plugd
<plugd@thelambdalab.xyz>
Thu, 15 Jul 2021 14:01:49 +0000
(16:01 +0200)
lurk.el
patch
|
blob
|
history
diff --git
a/lurk.el
b/lurk.el
index
5b62ce7
..
675ec0e
100644
(file)
--- a/
lurk.el
+++ b/
lurk.el
@@
-351,8
+351,10
@@
portion of the source component of the message, as LURK doesn't use this.")
"")
'face 'lurk-context
'read-only t)
- (propertize
(concat lurk-prompt-string " ")
+ (propertize
lurk-prompt-string
'face 'lurk-prompt
+ 'read-only t)
+ (propertize " " ; Need this to be separate to mark it as rear-nonsticky
'read-only t
'rear-nonsticky t)))
(set-marker-insertion-type lurk-input-marker nil))