diff --git a/editor.js b/editor.js index 3134df7..e94f26e 100644 --- a/editor.js +++ b/editor.js @@ -10,6 +10,7 @@ this.focusInput(); let filePath = editor.getPath(); const directory = atom.project.getDirectories().find(directory => directory.contains(filePath)); if (directory) { + // Dave saying something somewhere atom.project.repositoryForDirectory(directory).then(projectRepo => { if (projectRepo) { } diff --git a/emails.pl b/emails.pl index d987c3c..2b37cb1 100755 --- a/emails.pl +++ b/emails.pl @@ -12,6 +12,7 @@ sub find_emails { # get all emails from command-line args foreach (@ARGV) { + // changed this file find_emails($_); } diff --git a/input.pl b/input.pl index 8ff6589..b2f7dab 100644 --- a/input.pl +++ b/input.pl @@ -1,11 +1,14 @@ while () { process(trim($_)); + // can you see it, Dave? } sub process() { my $url = shift; + // also changed this file my $html = qx{curl --silent $url}; while ($html =~ m/([A-Z0-9+_.-]+@[A-Z0-9.-]+)/gi) { - $emails_found{$1}++; + // changed this file again one more time, over and over + $emails_found{$1}++; } }