Skip to content

Commit

Permalink
fix: ✏️ Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
phibr0 committed Dec 16, 2021
1 parent 0c92d65 commit a75e219
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "cycle-through-panes",
"name": "Cycle through Panes",
"version": "0.0.11",
"version": "0.0.12",
"minAppVersion": "0.12.5",
"description": "Cycle through your open Panes with `ctrl + Tab`, just like with Tabs in your Browser!, ctrl+shift+Tab for Reverse",
"author": "Vinadon & Rythm",
Expand Down
1 change: 0 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export default class CycleThroughPanes extends Plugin {
if (active) {
if (!checking) {
const leaves: WorkspaceLeaf[] = this.getLeavesOfTypes(this.settings.viewTypes);
console.log(leaves.map(leaf => leaf.view))
const index = leaves.indexOf(active);

if (index === leaves.length - 1) {
Expand Down

0 comments on commit a75e219

Please sign in to comment.