From 794393d55c87f2a834f9f7306757217f7f7acd86 Mon Sep 17 00:00:00 2001 From: Marcelo Bukowski de Farias Date: Sun, 7 Feb 2021 15:43:26 -0500 Subject: [PATCH 1/2] Perhaps love --- editor.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/editor.js b/editor.js index 3134df7..a3d9313 100644 --- a/editor.js +++ b/editor.js @@ -7,6 +7,14 @@ if (code.length === 0) { this.focusInput(); +function thisFunctionWasCodeReviewed () { + // Perhaps love is like a resting place + // A shelter from the storm + // It exists to give you comfort + // It is there to keep you warm + return 42; +} + let filePath = editor.getPath(); const directory = atom.project.getDirectories().find(directory => directory.contains(filePath)); if (directory) { From f9f538303c0b2490bdbe692f62aba3fbfdd052f4 Mon Sep 17 00:00:00 2001 From: Marcelo Bukowski de Farias Date: Tue, 16 Feb 2021 10:26:23 -0500 Subject: [PATCH 2/2] A function in a file in a directory in a branch --- adirectory/afile.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 adirectory/afile.js diff --git a/adirectory/afile.js b/adirectory/afile.js new file mode 100644 index 0000000..a18efe4 --- /dev/null +++ b/adirectory/afile.js @@ -0,0 +1,3 @@ +function afunction() { + return "a result"; +} \ No newline at end of file