This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ❯ make bootstrap | |
| /Applications/Xcode.app/Contents/Developer/usr/bin/make actual-bootstrap || /Applications/Xcode.app/Contents/Developer/usr/bin/make advice-on-failure make-target=bootstrap exit-status=$? | |
| /Applications/Xcode.app/Contents/Developer/usr/bin/make bootstrap-clean | |
| /Applications/Xcode.app/Contents/Developer/usr/bin/make -C src bootstrap-clean | |
| rm -f android-emacs libemacs.so | |
| rm -f temacs core ./*.core \#* ./*.o build-counter.c | |
| rm -f dmpstruct.h | |
| rm -f emacs.pdmp | |
| rm -f ../etc/DOC | |
| rm -f bootstrap-emacs bootstrap-emacs.pdmp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ❯ ./autogen.sh | |
| Checking whether you have the necessary tools... | |
| (Read INSTALL.REPO for more details on building Emacs) | |
| Checking for autoconf (need at least version 2.65) ... ok | |
| Your system has the required tools. | |
| Building aclocal.m4 ... | |
| Running 'autoreconf -fi -I m4' ... | |
| Building 'aclocal.m4' in exec ... | |
| Running 'autoreconf -fi' in exec ... | |
| Configuring local git repository... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;;; nm-org-roam-to-denote.el --- Migrate notes from org-roam to denote | |
| ;; Copyright (C) 2022 bitspook <bitspook@proton.me> | |
| ;; Author: bitspook | |
| ;; Version: 0.1.0 | |
| ;; URL: https://github.com/bitspook/notes-migrator | |
| ;; Package-Requires: ((emacs "28.1") (denote "1.0.0") | |
| ;;; Commentary: |
This document is an up-to-date guide on compile Emacs 31 on windows with MSYS2, and make a installation with native compile that can work without MSYS2.
The idea is after get a working Emacs, you may delete MSYS2 environment to save some disk space, and forget about rebuilding Emacs until the next time you feel need to, without need figuring out everything again.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (let ((orig (default-value 'repeat-echo-function)) | |
| rcol ccol in-repeat) | |
| (setq | |
| repeat-echo-function | |
| (lambda (map) | |
| (if orig (funcall orig map)) | |
| (unless rcol (setq rcol (face-foreground 'error))) | |
| (if map | |
| (unless in-repeat ; new repeat sequence | |
| (setq in-repeat t |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| MINGW64 ~/src/emacs-29 | |
| $ ./autogen.sh | |
| Checking whether you have the necessary tools... | |
| (Read INSTALL.REPO for more details on building Emacs) | |
| Checking for autoconf (need at least version 2.65) ... ok | |
| Your system has the required tools. | |
| Building aclocal.m4 ... | |
| Running 'autoreconf -fi -I m4' ... | |
| ac-wrapper: autoreconf: warning: auto-detected versions not found ( ); falling back to latest available | |
| You can now run './configure'. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| MINGW64 ~/src | |
| $ tar xJf emacs-29.0.92.tar.xz | |
| MINGW64 ~/src | |
| $ cd emacs-29.0.92/ | |
| MINGW64 ~/src/emacs-29.0.92 | |
| $ ls | |
| aclocal.m4 ChangeLog config.bat doc INSTALL.REPO lwlib modules README | |
| admin ChangeLog.1 configure etc leim m4 msdos site-lisp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [internal] Sat Jun 17 21:04:15 2023: | |
| (:message "Running language server: /Users/aqua0210/.nvm/versions/node/v19.6.0/bin/pyright-langserver --stdio") | |
| [client-request] (id:1) Sat Jun 17 21:04:15 2023: | |
| (:jsonrpc "2.0" :id 1 :method "initialize" :params | |
| (:processId 79724 :rootPath "/Users/aqua0210/Code/Python/django-project/" :rootUri "file:///Users/aqua0210/Code/Python/django-project" :initializationOptions #s(hash-table size 1 test eql rehash-size 1.5 rehash-threshold 0.8125 data | |
| ()) | |
| :capabilities | |
| (:workspace | |
| (:applyEdit t :executeCommand | |
| (:dynamicRegistration :json-false) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Write-Host "Enter connection details:" | |
| $server = "localhost" | |
| $server_maybe = (Read-Host -Prompt "Server [$server]") | |
| If($server_maybe -ne "") { | |
| $server = $server_maybe | |
| } | |
| $db = "postgres" |
NewerOlder