This file contains 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
;;; buffer.el --- Temporal buffer for fast boot | |
(defun buffer-mode () | |
"Buffer Mode" | |
(interactive) | |
(setq mode-name "Buffer") | |
(setq major-mode 'buffer-mode) | |
;; (setq buffer-mode-map (make-keymap)) | |
;; (use-local-map buffer-mode-map) | |
(run-hooks 'buffer-mode-hook)) |
This file contains 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
(with-eval-after-load "org-mac-link" | |
(defcustom org-mac-grab-Papers-app-p t | |
"Add menu option [P]apers to grab links from the Papers.app." | |
:tag "Grab Papers.app links" | |
:group 'org-mac-link | |
:type 'boolean) | |
(defun org-mac-papers-insert-front-most-paper-link () | |
(interactive) |
This file contains 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
diff -crN emacs-25.2_orig/configure.ac emacs-25.2/configure.ac | |
*** emacs-25.2_orig/configure.ac 2017-02-03 23:34:30.000000000 +0900 | |
--- emacs-25.2/configure.ac 2017-04-25 16:52:18.000000000 +0900 | |
*************** | |
*** 1915,1921 **** | |
INSTALL_ARCH_INDEP_EXTRA= | |
fi | |
! NS_OBJC_OBJ="nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o $ns_fontfile" | |
fi |
This file contains 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
diff -crN emacs-25.2_orig/configure.ac emacs-25.2/configure.ac | |
*** emacs-25.2_orig/configure.ac 2017-02-03 23:34:30.000000000 +0900 | |
--- emacs-25.2/configure.ac 2017-04-26 14:45:40.000000000 +0900 | |
*************** | |
*** 1915,1921 **** | |
INSTALL_ARCH_INDEP_EXTRA= | |
fi | |
! NS_OBJC_OBJ="nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o $ns_fontfile" | |
fi |
This file contains 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
;;; yatex.el --- Yet Another tex-mode //野鳥// -*- coding: sjis -*- -*- lexical-binding: t; -*- | |
;; Copyright (C) 2017 HIROSE Yuuji. | |
;; Author: HIROSE Yuuji.[[email protected]] | |
;; Keywords: tex | |
;; Version: 1.81 | |
;; URL: https://www.yatex.org/ | |
;; This program is distributed as a free software. You can |
This file contains 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
*** yatex/yatex.el 2017-09-11 11:22:34.000000000 +0900 | |
--- yatex.el 2017-09-11 11:52:33.000000000 +0900 | |
*************** | |
*** 1,16 **** | |
! ;;; yatex.el --- Yet Another tex-mode for emacs //ì¹// -*- coding: sjis -*- | |
! ;;; (c)1991-2017 by HIROSE Yuuji.[[email protected]] | |
! ;;; Last modified Sun Sep 10 21:19:43 2017 on firestorm | |
! ;;; $Id$ | |
! ;;; The latest version of this software is always available at; | |
! ;;; https://www.yatex.org/ |
This file contains 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
*** yatex.el 2017-09-11 14:41:00.000000000 +0900 | |
--- yatex/yatex.el 2017-09-11 14:41:36.000000000 +0900 | |
*************** | |
*** 5,10 **** | |
--- 5,18 ---- | |
;;; The latest version of this software is always available at; | |
;;; https://www.yatex.org/ | |
+ ;; This program is distributed as a free software. You can | |
+ ;; use/copy/modify/redistribute this software freely but with NO warranty to |
This file contains 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
#!/bin/sh | |
# The original script is here: https://gist.githubusercontent.com/railwaycat/10988446/raw/990dde69ea728b9ceff68dd649ad2112c5692ef0/build-emacs.app.sh | |
rootdir=$HOME/Desktop/emacs_mac_port | |
if [ ! -d $rootdir ]; then | |
mkdir $rootdir | |
fi | |
installprefix=$rootdir/build | |
app_dir=$installprefix/Emacs.app/Contents/Resources |
This file contains 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
(with-eval-after-load "org" | |
(defun advice:org-return (f &optional arg) | |
"An extension for checking invisible editing when you hit the enter." | |
(interactive "P") | |
(org-check-before-invisible-edit 'insert) | |
(apply f arg)) | |
(advice-add 'org-return :around #'advice:org-return)) |
This file contains 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
#!/bin/sh | |
cd ~/Desktop | |
mkdir emacs_ns | |
cd ~/Desktop/emacs_ns | |
VERSION=26.0.91 | |
#curl -LO http://ftpmirror.gnu.org/emacs/emacs-$VERSION.tar.gz | |
curl -LO ftp://alpha.gnu.org/gnu/emacs/pretest/emacs-$VERSION.tar.xz | |
curl -LO https://gist.githubusercontent.com/takaxp/5294b6c52782d0be0b25342be62e4a77/raw/9c9325288ff03a50ee26e4e32c8ca57c0dd81ace/emacs-25.2-inline-googleime.patch | |
tar zxvf emacs-$VERSION.tar.xz |