@gregorlohaus/codemirror-helix 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +69 -0
- package/dist/commands.d.ts +72 -0
- package/dist/commands.d.ts.map +1 -0
- package/dist/commands.js +506 -0
- package/dist/commands.js.map +1 -0
- package/dist/index.d.ts +26 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +41 -0
- package/dist/index.js.map +1 -0
- package/dist/keymap.d.ts +10 -0
- package/dist/keymap.d.ts.map +1 -0
- package/dist/keymap.js +521 -0
- package/dist/keymap.js.map +1 -0
- package/dist/motions.d.ts +29 -0
- package/dist/motions.d.ts.map +1 -0
- package/dist/motions.js +184 -0
- package/dist/motions.js.map +1 -0
- package/dist/prompt.d.ts +13 -0
- package/dist/prompt.d.ts.map +1 -0
- package/dist/prompt.js +68 -0
- package/dist/prompt.js.map +1 -0
- package/dist/state.d.ts +54 -0
- package/dist/state.d.ts.map +1 -0
- package/dist/state.js +50 -0
- package/dist/state.js.map +1 -0
- package/dist/textobjects.d.ts +12 -0
- package/dist/textobjects.d.ts.map +1 -0
- package/dist/textobjects.js +116 -0
- package/dist/textobjects.js.map +1 -0
- package/dist/view.d.ts +10 -0
- package/dist/view.d.ts.map +1 -0
- package/dist/view.js +105 -0
- package/dist/view.js.map +1 -0
- package/package.json +51 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"view.d.ts","sourceRoot":"","sources":["../src/view.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EACV,UAAU,EAGV,KAAK,aAAa,EAElB,KAAK,UAAU,EAChB,MAAM,kBAAkB,CAAC;AAuB1B,eAAO,MAAM,WAAW;iBAEP,aAAa;mBAIX,UAAU;gBAUb,UAAU,GAAG,aAAa;aAazC,CAAC;AAEF,eAAO,MAAM,eAAe,uCAEzB,CAAC;AAyBJ,eAAO,MAAM,gBAAgB,uCAA4B,CAAC;AAE1D,eAAO,MAAM,UAAU,uCA8BrB,CAAC"}
|
package/dist/view.js
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { Decoration, EditorView, ViewPlugin, WidgetType, showPanel, } from "@codemirror/view";
|
|
2
|
+
import { getMode, helixState } from "./state";
|
|
3
|
+
class EolCursorWidget extends WidgetType {
|
|
4
|
+
toDOM() {
|
|
5
|
+
const span = document.createElement("span");
|
|
6
|
+
span.className = "cm-helix-block cm-helix-block-eol";
|
|
7
|
+
span.textContent = " ";
|
|
8
|
+
return span;
|
|
9
|
+
}
|
|
10
|
+
ignoreEvent() {
|
|
11
|
+
return true;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
const blockMark = Decoration.mark({ class: "cm-helix-block" });
|
|
15
|
+
const selectionMark = Decoration.mark({ class: "cm-helix-selection" });
|
|
16
|
+
const eolCursor = Decoration.widget({ widget: new EolCursorWidget(), side: 1 });
|
|
17
|
+
// Draws the selection ranges + a block cursor at each head while in
|
|
18
|
+
// normal/select mode. We render the selection ourselves (rather than relying
|
|
19
|
+
// on drawSelection, which the host theme can leave invisible) so multi-cursor
|
|
20
|
+
// selections are always clearly highlighted.
|
|
21
|
+
export const blockCursor = ViewPlugin.fromClass(class {
|
|
22
|
+
constructor(view) {
|
|
23
|
+
this.decorations = this.build(view);
|
|
24
|
+
}
|
|
25
|
+
update(update) {
|
|
26
|
+
if (update.docChanged ||
|
|
27
|
+
update.selectionSet ||
|
|
28
|
+
update.viewportChanged ||
|
|
29
|
+
update.startState.field(helixState).mode !== update.state.field(helixState).mode) {
|
|
30
|
+
this.decorations = this.build(update.view);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
build(view) {
|
|
34
|
+
if (getMode(view.state) === "insert")
|
|
35
|
+
return Decoration.none;
|
|
36
|
+
const deco = [];
|
|
37
|
+
for (const range of view.state.selection.ranges) {
|
|
38
|
+
if (!range.empty)
|
|
39
|
+
deco.push(selectionMark.range(range.from, range.to));
|
|
40
|
+
const pos = range.head;
|
|
41
|
+
const line = view.state.doc.lineAt(pos);
|
|
42
|
+
deco.push(pos < line.to ? blockMark.range(pos, pos + 1) : eolCursor.range(pos));
|
|
43
|
+
}
|
|
44
|
+
return Decoration.set(deco, true);
|
|
45
|
+
}
|
|
46
|
+
}, { decorations: (plugin) => plugin.decorations });
|
|
47
|
+
export const modeEditorClass = EditorView.editorAttributes.compute([helixState], (state) => ({
|
|
48
|
+
class: `cm-helix cm-helix-${getMode(state)}`,
|
|
49
|
+
}));
|
|
50
|
+
function statusPanel(view) {
|
|
51
|
+
const dom = document.createElement("div");
|
|
52
|
+
dom.className = "cm-helix-status";
|
|
53
|
+
const render = () => {
|
|
54
|
+
const s = view.state.field(helixState);
|
|
55
|
+
const label = s.mode === "insert" ? "INS" : s.mode === "select" ? "SEL" : "NOR";
|
|
56
|
+
const count = s.count ? ` ${s.count}` : "";
|
|
57
|
+
const reg = s.register ? ` "${s.register}` : "";
|
|
58
|
+
const pend = s.pending ? ` ${s.pending.type}` : "";
|
|
59
|
+
const sels = view.state.selection.ranges.length;
|
|
60
|
+
const multi = sels > 1 ? ` ${sels} sels` : "";
|
|
61
|
+
dom.textContent = `${label}${count}${reg}${pend}${multi}`;
|
|
62
|
+
dom.dataset.mode = s.mode;
|
|
63
|
+
};
|
|
64
|
+
render();
|
|
65
|
+
return {
|
|
66
|
+
dom,
|
|
67
|
+
update: (u) => {
|
|
68
|
+
if (u.docChanged || u.selectionSet || u.transactions.length)
|
|
69
|
+
render();
|
|
70
|
+
},
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
export const helixStatusPanel = showPanel.of(statusPanel);
|
|
74
|
+
export const helixTheme = EditorView.baseTheme({
|
|
75
|
+
"&.cm-helix-normal .cm-cursor, &.cm-helix-normal .cm-cursorLayer": { display: "none" },
|
|
76
|
+
"&.cm-helix-select .cm-cursor, &.cm-helix-select .cm-cursorLayer": { display: "none" },
|
|
77
|
+
".cm-helix-selection": { backgroundColor: "rgba(120,160,255,0.32)" },
|
|
78
|
+
".cm-helix-block": { backgroundColor: "rgba(125,165,255,0.7)", borderRadius: "1px" },
|
|
79
|
+
".cm-helix-block-eol": { display: "inline-block", width: "0.55em" },
|
|
80
|
+
".cm-helix-status": {
|
|
81
|
+
padding: "1px 10px",
|
|
82
|
+
font: "11px ui-monospace, SFMono-Regular, Menlo, monospace",
|
|
83
|
+
letterSpacing: "0.05em",
|
|
84
|
+
},
|
|
85
|
+
".cm-helix-status[data-mode=insert]": { color: "#16a34a" },
|
|
86
|
+
".cm-helix-status[data-mode=select]": { color: "#d97706" },
|
|
87
|
+
".cm-helix-status[data-mode=normal]": { color: "#2563eb" },
|
|
88
|
+
".cm-helix-prompt": {
|
|
89
|
+
display: "flex",
|
|
90
|
+
gap: "0.5em",
|
|
91
|
+
alignItems: "center",
|
|
92
|
+
padding: "2px 10px",
|
|
93
|
+
font: "12px ui-monospace, SFMono-Regular, Menlo, monospace",
|
|
94
|
+
},
|
|
95
|
+
".cm-helix-prompt label": { opacity: 0.7 },
|
|
96
|
+
".cm-helix-prompt input": {
|
|
97
|
+
flex: "1",
|
|
98
|
+
border: "none",
|
|
99
|
+
outline: "none",
|
|
100
|
+
background: "transparent",
|
|
101
|
+
color: "inherit",
|
|
102
|
+
font: "inherit",
|
|
103
|
+
},
|
|
104
|
+
});
|
|
105
|
+
//# sourceMappingURL=view.js.map
|
package/dist/view.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"view.js","sourceRoot":"","sources":["../src/view.ts"],"names":[],"mappings":"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"}
|
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gregorlohaus/codemirror-helix",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Helix-editor-style modal editing for CodeMirror 6 (multiple selections, select mode, goto/match modes, textobjects, surround, registers, search).",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": ["dist", "README.md"],
|
|
16
|
+
"sideEffects": false,
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsc -p tsconfig.json",
|
|
19
|
+
"prepublishOnly": "tsc -p tsconfig.json"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"codemirror",
|
|
23
|
+
"codemirror6",
|
|
24
|
+
"helix",
|
|
25
|
+
"modal",
|
|
26
|
+
"vim",
|
|
27
|
+
"editor",
|
|
28
|
+
"keybindings"
|
|
29
|
+
],
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "https://gitea.gregorlohaus.com/gregor/gregorlohaus.com",
|
|
34
|
+
"directory": "packages/codemirror-helix"
|
|
35
|
+
},
|
|
36
|
+
"peerDependencies": {
|
|
37
|
+
"@codemirror/commands": "^6.0.0",
|
|
38
|
+
"@codemirror/language": "^6.0.0",
|
|
39
|
+
"@codemirror/search": "^6.0.0",
|
|
40
|
+
"@codemirror/state": "^6.0.0",
|
|
41
|
+
"@codemirror/view": "^6.0.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@codemirror/commands": "^6.10.3",
|
|
45
|
+
"@codemirror/language": "^6.12.3",
|
|
46
|
+
"@codemirror/search": "^6.5.6",
|
|
47
|
+
"@codemirror/state": "^6.6.0",
|
|
48
|
+
"@codemirror/view": "^6.43.1",
|
|
49
|
+
"typescript": "^5.6.0"
|
|
50
|
+
}
|
|
51
|
+
}
|