Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions denops/skkeleton/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { handleKey, registerKeyMap } from "./keymap.ts";
import { initializeStateWithAbbrev } from "./mode.ts";
import { keyToNotation, notationToKey, receiveNotation } from "./notation.ts";
import { currentContext, currentLibrary, variables } from "./store.ts";
import { InputState } from "./state.ts";
import type { CompletionData, RankData } from "./types.ts";

import { as, assert, is } from "@core/unknownutil";
Expand All @@ -34,6 +35,7 @@ type VimStatus = {

type HandleResult = {
state: {
henkanFeed: string;
phase: string;
};
result: string;
Expand Down Expand Up @@ -242,6 +244,7 @@ function buildResult(result: string): HandleResult {
}
return {
state: {
henkanFeed: (state as InputState)?.henkanFeed ?? "",
phase,
},
result,
Expand Down
Loading