The figure below calls out
- The netfilter hooks
- The order of table traversal
| --- Emacs Hammerspoon Script | |
| -- Author: Justin Tanner | |
| -- Email: [email protected] | |
| -- License: MIT | |
| --- What does this thing do? | |
| -- Allows you to have Emacs *like* keybindings in apps other than Emacs. | |
| -- You can use Ctrl-Space to mark and cut text just like Emacs. Also enables Emacs prefix keys such as Ctrl-xs (save). | |
| --- Installation |
| #include <vector> | |
| #include <assert.h> | |
| #include <stdio.h> | |
| #include <stdint.h> | |
| #include <stdlib.h> | |
| typedef int32_t Score; | |
| typedef int32_t UserId; | |
| typedef int32_t Rank; | |
| const Score kInvalidScore = -1; |