From b134751fd7380be50d45d17fa47e466d4b82f459 Mon Sep 17 00:00:00 2001 From: jonathannnty <141669529+jonathannnty@users.noreply.github.com> Date: Fri, 23 Feb 2024 20:33:59 -0800 Subject: [PATCH] Update labreport4.md --- cse15l-lab/labreport4.md | 1 + 1 file changed, 1 insertion(+) diff --git a/cse15l-lab/labreport4.md b/cse15l-lab/labreport4.md index e9dc5b8..3c2bf3f 100644 --- a/cse15l-lab/labreport4.md +++ b/cse15l-lab/labreport4.md @@ -37,6 +37,7 @@ ___ The command that I ran `vim` enables text editting on a given file name. As aforementioned by Step 6, I used the auto-complete shortcut of the `` key to access the `ListExamples.java` file. Afterwards, in the text editer `vim`, I need to change the variable that is being incremented from `index1` to `index2.` The 1 in the variable name can be quickly accessed by the `G` key navigation tool, which can take you to a specified row in the text (Row 44); additionally, the column where 1 is located can accessed through the `|`, which can take you a specified column in the text. Once you are at the position where edits must be made, `s` removes the initial character where the cursor was and then enters insert mode. Simply insert 2 into the text. `` will exit out of insert mode. From there, `:wq` will save and quit vim. +![Image](images/lab4_step7b.png) ![Image](images/lab4_step7.png) ___