Skip to content

Instantly share code, notes, and snippets.

View joergen7's full-sized avatar

Jörgen Brandt joergen7

View GitHub Profile
@joergen7
joergen7 / Default (Windows).sublime-keymap
Created January 23, 2024 15:01
Emacs Bindings for Sublime Text
[
{ "keys": ["ctrl+x"], "command": "noop"},
{ "keys": ["ctrl+x", "ctrl+f"], "command": "prompt_open_file" },
{ "keys": ["ctrl+x", "ctrl+s"], "command": "save" },
{ "keys": ["ctrl+x", "k"], "command": "close" },
{ "keys": ["ctrl+x", "d"], "command": "toggle_side_bar" },
{ "keys": ["ctrl+x", "ctrl+c"], "command": "exit" },
{ "keys": ["ctrl+s"], "command": "show_panel", "args": {"panel": "find", "reverse": false} },
{ "keys": ["ctrl+w"], "command": "delete_to_mark" },
#lang racket/base
(require
(only-in racket/port
call-with-input-string)
(only-in lua/lang/lexer
make-lexer
lexer-peek
lexer-take)
(only-in lua/lang/parser