Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
kuuote committed Sep 16, 2021
1 parent 1156292 commit 3b9090e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion denops/skkeleton/function/henkan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export async function henkanForward(context: Context) {
return;
}
state.candidateIndex = oldCandidateIndex;
if(state.candidateIndex === -1) {
if (state.candidateIndex === -1) {
context.state.type = "input";
}
}
Expand Down
2 changes: 1 addition & 1 deletion denops/skkeleton/function/jisyo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export async function jisyoTouroku(context: Context): Promise<boolean> {
asInputState(state);
return true;
} catch (e) {
if(config.debug) {
if (config.debug) {
console.log("jisyo touroku interrupted");
console.log(e);
}
Expand Down

0 comments on commit 3b9090e

Please sign in to comment.