Skip to content

Commit

Permalink
Include additional logging
Browse files Browse the repository at this point in the history
  • Loading branch information
cowuake committed May 1, 2024
1 parent f0103f9 commit 31a3edb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions schemius-web/schemius.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,10 @@ class Schemius {
const position = Schemius.terminal.get_position();
const picker = Schemius.terminal.cmd().get();
const [precedingChar, followingChar] = [picker[position - 1], picker[position]];
console.log(
`Going to delete '${precedingChar}' and possibly '${followingChar}', ` +
`starting from position ${position}.`
);
const match = Schemius.matchingChars[precedingChar];

Schemius.terminal.cmd().delete(-1);
Expand Down

0 comments on commit 31a3edb

Please sign in to comment.