- microsoft/winget-cli#3832 (comment) (https://aka.ms/GetWinGet)
- https://learn.microsoft.com/en-us/windows/package-manager/winget/#install-winget
winget install --id=GNU.Emacs -e --verbose-logs
is in C:\Program Files\Emacs\emacs-29.3_2\bin - https://github.com/alpha22jp/atomic-chrome/blob/master/README.md#customization
- open this https://ghosttext.fregante.com/troubleshooting/
- https://melpa.org/#/jira-markup-mode
- https://stackoverflow.com/questions/5500035/set-custom-keybinding-for-specific-emacs-mode
- https://emacs.stackexchange.com/questions/22136/keybinding-to-insert-a-snippet-of-text
- https://endlessparentheses.com/get-in-the-habit-of-using-sharp-quote.html
- https://www.emacswiki.org/emacs?action=browse;oldid=KeyBindingDiscussion;id=ChoosingKeysToBind
- alpha22jp/atomic-chrome#80
- https://stackoverflow.com/a/24836870
When package-install
doesn't find a package do (https://stackoverflow.com/a/24836870):
M-x package-list-packages
C-s <packagename>
No need to guess. If you want to find out the current active keymap in a given situation, like in the gnus group buffer, use this command:
M-: (mapcar (lambda(x)(car(rassq x minor-mode-map-alist)))(current-minor-mode-maps))
Thanks to David Kastrup for giving it to me. --memnon
you might need to wait for the correct mode to be loaded before seting the key
(eval-after-load 'text-mode
'(define-key text-mode-map (kbd "'") 'maybe-open-apostrophe))
~/.emacs:
;; If you don't have MELPA in your package archives:
(require 'package)
(add-to-list
'package-archives
'("melpa" . "http://melpa.org/packages/") t)
(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t) ; Org-mode's repository
(package-initialize)
(package-refresh-contents)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(package-selected-packages
'(jira-markup-mode atomic-chrome org-dropbox org-plus-contrib ## weblogger)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
(require 'atomic-chrome)
(atomic-chrome-start-server)
(setq atomic-chrome-buffer-open-style 'frame)
(setq atomic-chrome-extension-type-list '(atomic-chrome))
(setq atomic-chrome-default-major-mode 'jira-markup-mode)
(defun my/jira-markup-insert-code-block ()
"Insert markup for a block of code.
If Transient Mark mode is on and a region is active, it is made a
code block."
(interactive)
(insert "{code}\n" "\n{code}\n")
(backward-char 8))
(defun my/jira-markup-insert-table-header ()
"Insert markup for a table header."
(interactive)
(insert "||" "||")
(backward-char 2))
;;(defun my/add-jira-code-binding ()
;; "Keymap for Jira-Markup major mode."
;; (local-set-key (kbd "C-c C-s C") #'my/jira-markup-insert-code-block))
;; (add-hook 'jira-markup-mode-hook #'my/add-jira-code-binding)
(eval-after-load 'atomic-chrome-edit-mode
(define-key atomic-chrome-edit-mode-map (kbd "C-c s") 'my/jira-markup-insert-code-block))
(eval-after-load 'atomic-chrome-edit-mode
(define-key atomic-chrome-edit-mode-map (kbd "||") 'my/jira-markup-insert-table-header)
)
- https://www.emacswiki.org/emacs/EmacsMsWindowsIntegration#h5o-9 (
shell:startup
) - https://www.reddit.com/r/emacs/comments/zfgx94/working_emacs_daemon_and_client_in_windows_11/
import attached xml in Aufgabenplanung ("C:\WINDOWS\system32\mmc.exe" "C:\WINDOWS\system32\taskschd.msc" /s
), but before replace [[ ... ]]
, to have emacs daemon running.
but take care of alpha22jp/atomic-chrome#80
shortcut to open files with:
"C:\Program Files\Emacs\emacs-29.4\bin\emacsclientw.exe" -create-frame -n -t -a ""