571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
54 lines
1.6 KiB
Python
54 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
import re
|
|
from xkeysnail.transform import *
|
|
|
|
aa = False
|
|
def aa_setvar(v):
|
|
def _aa_setvar():
|
|
transform._mark_set = False
|
|
global aa; aa = v
|
|
return _aa_setvar
|
|
def aa_ifvar():
|
|
def _aa_ifvar():
|
|
transform._mark_set = False
|
|
global aa
|
|
if aa: aa = False; return K("esc")
|
|
return K("enter")
|
|
return _aa_ifvar
|
|
def aa_flipmark():
|
|
def _aa_flipmark():
|
|
transform._mark_set = not transform._mark_set;
|
|
return _aa_flipmark
|
|
|
|
define_keymap(re.compile("Google-chrome|Chromium-browser|firefox"), {
|
|
K("C-b"): with_mark(K("left")),
|
|
K("C-f"): with_mark(K("right")),
|
|
K("C-p"): with_mark(K("up")),
|
|
K("C-n"): with_mark(K("down")),
|
|
K("M-b"): with_mark(K("C-left")),
|
|
K("M-f"): with_mark(K("C-right")),
|
|
K("C-a"): with_mark(K("home")),
|
|
K("C-e"): with_mark(K("end")),
|
|
|
|
K("C-w"): [K("C-x"), set_mark(False)],
|
|
K("M-w"): [K("C-c"), K("right"), set_mark(False)],
|
|
K("C-y"): [K("C-v"), set_mark(False)],
|
|
K("C-k"): [K("Shift-end"), K("C-x"), set_mark(False)],
|
|
K("C-d"): [K("delete"), set_mark(False)],
|
|
K("M-d"): [K("C-delete"), set_mark(False)],
|
|
K("M-backspace"): [K("C-backspace"), set_mark(False)],
|
|
|
|
K("C-slash"): [K("C-z"), set_mark(False)],
|
|
K("C-space"): aa_flipmark(),
|
|
K("C-M-space"): with_or_set_mark(K("C-right")),
|
|
|
|
# K("C-s"): K("F3"),
|
|
# K("C-r"): K("Shift-F3"),
|
|
# K("C-g"): [K("esc"), set_mark(False)]
|
|
|
|
K("C-s"): [K("F3"), aa_setvar(True)],
|
|
K("C-r"): [K("Shift-F3"), aa_setvar(True)],
|
|
K("C-g"): [K("esc"), aa_setvar(False)],
|
|
K("enter"): aa_ifvar()
|
|
})
|