From 1c064ec13a375a04233be428c9991abced19aff5 Mon Sep 17 00:00:00 2001 From: Loic Nageleisen Date: Sun, 24 May 2015 11:47:46 +0200 Subject: [PATCH] debug logging removed --- lib/ex.coffee | 1 - lib/find.coffee | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/ex.coffee b/lib/ex.coffee index 5c99084..4a9a60d 100644 --- a/lib/ex.coffee +++ b/lib/ex.coffee @@ -154,7 +154,6 @@ class Ex args = args.trim() filePaths = args.split(' ') filePaths = undefined if filePaths.length is 1 and filePaths[0] is '' - console.log filePaths, filePaths is [''] pane = atom.workspace.getActivePane() if filePaths? and filePaths.length > 0 newPane = pane.splitUp() diff --git a/lib/find.coffee b/lib/find.coffee index 2f0c597..53dffc5 100644 --- a/lib/find.coffee +++ b/lib/find.coffee @@ -16,7 +16,6 @@ module.exports = { findPreviousInBuffer : (buffer, curPos, pattern) -> found = @findInBuffer(buffer, pattern) - console.log found, curPos less = (i for i in found when i.compare([curPos, curPos]) is -1) if less.length > 0 return less[less.length - 1].start.row