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
emacs/ | |
eglot/ |
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
#InstallKeybdHook | |
prefixMaybe(ByRef map) { | |
SendLevel 1 | |
; Read 1 key (L1), Case-Sensitive (C), Ignore backspace (B) | |
; Ignore other hotkeys (I), TImeout after 0.5 seconds (T0.5) | |
Input, userKey, L1 C B I T0.5 M, {LControl}{RControl}{LAlt}{RAlt}{LWin}{RWin}{AppsKey}{F1}{F2}{F3}{F4}{F5}{F6}{F7}{F8}{F9}{F10}{F11}{F12}{Left}{Right}{Up}{Down}{Home}{End}{PgUp}{PgDn}{Del}{Ins}{BS}{Capslock}{Numlock}{PrintScreen}{Pause} | |
; If failed send the "end key" concealed in ErrorLevel |
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
(server-start) | |
(show-paren-mode 1) | |
(global-auto-revert-mode 1) | |
(delete-selection-mode 1) | |
(menu-bar-mode -1) | |
(tooltip-mode -1) | |
(ido-mode 1) | |
(ido-everywhere 1) |
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
(setq inferior-lisp-program "sbcl") | |
(add-to-list 'load-path "~/Source/Emacs/slime/") | |
(require 'slime-autoloads) | |
(add-to-list 'slime-contribs 'slime-fancy) | |
(electric-pair-mode 1) | |
(eldoc-mode 1) | |
(ido-mode 1) | |
(tool-bar-mode -1) | |
(menu-bar-mode -1) |
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
(ql:quickload :cffi) | |
;;; Nothing special about the "CFFI-USER" package. We're just | |
;;; using it as a substitute for your own CL package. | |
(defpackage :cl-discount | |
(:use :common-lisp :cffi) | |
(:nicknames :discount) | |
(:export #:markdown | |
#:markdown-to-file)) |
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
#!/usr/bin/perl -w | |
# | |
# Based on a similar util by Phil Jackson ([email protected]) | |
use Cwd; | |
use File::Copy; | |
if (-t STDIN ) { | |
# No STDIN was passed | |
# | |
@args = (); |
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
# Bazaar merge directive format 2 (Bazaar 0.90) | |
# revision_id: [email protected] | |
# target_branch: http://bzr.savannah.gnu.org/r/emacs/trunk | |
# testament_sha1: 27c8026494ef46e68ad79f8263f479ed22874804 | |
# timestamp: 2010-01-30 13:33:01 +0000 | |
# base_revision_id: [email protected]\ | |
# 0m0lt5sbqqqhuufz | |
# | |
# Begin patch | |
=== modified file 'src/nsterm.m' |