Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
11ff3b67
Commit
11ff3b67
authored
Mar 27, 2009
by
Andreas Schwab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* simple.el (shift-select-mode): Make it a defcustom.
* cus-start.el: Remove shift-select-mode.
parent
d347e494
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/cus-start.el
lisp/cus-start.el
+0
-1
lisp/simple.el
lisp/simple.el
+4
-2
No files found.
lisp/ChangeLog
View file @
11ff3b67
2009-03-27 Andreas Schwab <schwab@linux-m68k.org>
* simple.el (shift-select-mode): Make it a defcustom.
* cus-start.el: Remove shift-select-mode.
2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
* simple.el (shift-select-mode): Move declaration from callint.c.
...
...
lisp/cus-start.el
View file @
11ff3b67
...
...
@@ -98,7 +98,6 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of
"
22.1
")
;; callint.c
(mark-even-if-inactive editing-basics boolean)
(shift-select-mode editing-basics boolean)
;; callproc.c
(shell-file-name execute file)
(exec-path execute
...
...
lisp/simple.el
View file @
11ff3b67
...
...
@@ -3746,7 +3746,7 @@ mode temporarily."
(t (activate-mark)))
nil))
(def
var
shift-select-mode t
(def
custom
shift-select-mode t
"
When
non-nil,
shifted
motion
keys
activate
the
mark
momentarily.
While
the
mark
is
activated
in
this
way,
any
shift-translated
point
...
...
@@ -3756,7 +3756,9 @@ by any subsequent point motion key that was not shift-translated, or
by
any
action
that
normally
deactivates
the
mark
in
Transient
Mark
mode.
See
`
this-command-keys-shift-translated
'
for
the
meaning
of
shift-translation.
")
shift-translation.
"
:type 'boolean
:group 'editing-basics)
(defun handle-shift-selection ()
"
Activate/deactivate
mark
depending
on
invocation
thru
``
shift
translation.
''
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment