So, you've acquired a work of interactive fiction, and you'd like to play it in Gargoyle. Interactive fiction works have been published in many forms over the decades, some easy to use, some less so. The exact steps you need to follow depend on what format it's currently in,
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
declare-option -hidden range-specs fold_regions 0 | |
add-highlighter global/fold-regions replace-ranges fold_regions | |
# range-specs option format: | |
# | |
# - a timestamp (like %val{timestamp}) | |
# - zero or more "a.b,c.d|string", where: | |
# - a is the start line | |
# - b is the start byte in the start line | |
# - c is the end line |
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/python3 | |
import collections | |
import dataclasses | |
import re | |
import subprocess | |
import sys | |
import typing | |
VERSIONED_DEP_RE = re.compile(r" \([^)]*\)") |
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
MAX_X = 320 | |
MAX_Y = 240 | |
POINT_A = {MAX_X/2, 0 } // top middle | |
POINT_B = {0, MAX_Y} // bottom left | |
POINT_C = {MAX_X, MAX_Y} // bottom right | |
// we greyscale, baby! | |
COLOR_A = 0 | |
COLOR_B = 192 |
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
/********************************* | |
* | |
* Snoof Generator v1.1 | |
* | |
* Dave Olszewski 4/25/1997 | |
* updated 8/12/1998 | |
* | |
* A relatively inefficient way | |
* to make snoof | |
* |
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
declare-option completions example | |
set-option -add global completers option=example | |
set-option global example 1.1@1 hello||HELLO world||WORLD |
- Launch Services (does not use a login shell)
- Finder
- Kitty
- bash #1 (login shell)
- kak -s apple
- bash #2 (login shell)
- kak -s apple
- connects to the Kakoune inside bash #1, and so you see the bash #1 environment (also a login shell)
- kak -s apple
- bash #3 (login shell)
- bash #1 (login shell)
- kitty @ new-window kak -s banana
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
declare-user-mode tree | |
map -docstring "prev" global tree <left> ": tree-select-prev-node<ret>" | |
map -docstring "parent" global tree <up> ": tree-select-node<ret>" | |
map -docstring "next" global tree <right> ": tree-select-next-node<ret>" | |
map -docstring "children" global tree <down> ": tree-select-children<ret>" | |
hook global WinSetOption filetype=.* %{ | |
evaluate-commands %sh{ | |
if command -V kak-tree >/dev/null 2>/dev/null && |
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
declare-option -hidden int last_state_save_history_id 0 | |
declare-option str state_save_path %sh{ | |
echo ${XDG_DATA_HOME:-~/.local/share/}/kak/state-save/ | |
} | |
define-command \ | |
-docstring "Save the current selection state for this file" \ | |
state-save \ | |
%{ evaluate-commands %sh{ |
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
# Readline has a bunch of special-case bindings just for vi mode, which means we | |
# can't just add Kakoune-style bindings; instead, we must build Kakoune-style | |
# bindings from combinations of other (usually emacs-based) commands. BUT | |
# Readline doesn't support binding a key to a sequence of commands; instead, | |
# we bind commands to a likely-unused portion of the keymap, and then bind | |
# our actual keys to sequences of those unusual keys. | |
"\C-a\C-xm": set-mark | |
"\C-a\C-xh": backward-char | |
"\C-a\C-xl": forward-char | |
"\C-a\C-xw": forward-word |
NewerOlder