S
Топ 10 за год:
1. xFA25E — 46
2. aragaer — 44
3. greenest_pig — 35
4. dbvvmpg — 23
5. d1g1tal_w0rld_kam1kaz3 — 15
6. thearcticcat — 14
7. akater — 12
8. isaurian_the_3rd_not_really — 12
9. Nekifirus — 12
10. Timifikator — 11
Size: a a a
S
PG
PG
PG
PG
PS
PS
PS
PS
PS
PS
PS
PS
ЯЛ
ЯЛ
PS
NM
(defun push-mark-no-activate ()
"Pushes `point' to `mark-ring' and does not activate the region
Equivalent to \\[set-mark-command] when \\[transient-mark-mode] is disabled"
(interactive)
(push-mark (point) t nil)
(message "Pushed mark to ring"))
(global-set-key (kbd "C-`") 'push-mark-no-activate)
(defun jump-to-mark ()
"Jumps to the local mark, respecting the `mark-ring' order.
This is the same as using \\[set-mark-command] with the prefix argument."
(interactive)
(set-mark-command 1))
(global-set-key (kbd "M-`") 'jump-to-mark)
AC