G(
:bind ("C-sosinogu" . tvoya-funkzia) (:map sosinogu-map ("M-x pizda" . drugaya-funkzia))
Size: a a a
VL
:bind ("C-sosinogu" . tvoya-funkzia) (:map sosinogu-map ("M-x pizda" . drugaya-funkzia))
G(
G(
(use-package modalka
:ensure t
:bind
("C-j" . nil)
("C-;" . nil)
("<escape>" . #'modalka-mode)
(:map modalka-mode-map)
("i" . #'modalka-mode)
("j" . #'backward-char)
("J" . #'left-word)
("C-j" . #'beginning-of-line)
("k" . #'next-line)
("l" . #'previous-line)
(";" . #'forward-char)
(":" . #'right-word)
("C-;" . #'end-of-line)
("y" . #'yank)
("w" . #'kill-ring-save)
("W" . #'kill-region)
("m" . #'set-mark-command)
("1" . #'delete-frame)
("2" . #'delete-other-frames)
("3" . #'make-frame-command)
("u" . #'undo)
("a" . #'execute-extended-command)
("o" . #'other-frame)
("d" . #'delete-forward-char)
("D" . #'kill-word)
("C-d" . #'kill-line)
("n" . #'universal-argument)
:config
(setq-default cursor-type '(bar . 1))
(setq modalka-cursor-type 'box)
(modalka-global-mode t))
VL
(use-package modalka
:ensure t
:bind
("C-j" . nil)
("C-;" . nil)
("<escape>" . #'modalka-mode)
(:map modalka-mode-map)
("i" . #'modalka-mode)
("j" . #'backward-char)
("J" . #'left-word)
("C-j" . #'beginning-of-line)
("k" . #'next-line)
("l" . #'previous-line)
(";" . #'forward-char)
(":" . #'right-word)
("C-;" . #'end-of-line)
("y" . #'yank)
("w" . #'kill-ring-save)
("W" . #'kill-region)
("m" . #'set-mark-command)
("1" . #'delete-frame)
("2" . #'delete-other-frames)
("3" . #'make-frame-command)
("u" . #'undo)
("a" . #'execute-extended-command)
("o" . #'other-frame)
("d" . #'delete-forward-char)
("D" . #'kill-word)
("C-d" . #'kill-line)
("n" . #'universal-argument)
:config
(setq-default cursor-type '(bar . 1))
(setq modalka-cursor-type 'box)
(modalka-global-mode t))
VL
VL
PG
DL
DL
PG
DL
DL
(propertize "foo" 'face 'italic
'mouse-face 'bold-italic)
⇒ #("foo" 0 3 (mouse-face bold-italic face italic))
PG
DL
— Function: text-properties-at position &optional object
DL
DL
(text-properties-at 0 (propertize "foo" 'face 'italic
'mouse-face 'bold-italic))
(face italic mouse-face bold-italic)