Changes between Version 11 and Version 12 of en/HowToCodeInTerminal


Ignore:
Timestamp:
May 16, 2025, 1:58:48 PM (2 weeks ago)
Author:
Ales Horak
Comment:

edited by hales in edit_page_in_vim.py

Legend:

Unmodified
Added
Removed
Modified
  • en/HowToCodeInTerminal

    v11 v12  
    1414  [https://missing.csail.mit.edu/2020/editors/#vim MIT course VIM intro]
    1515  for an initial engagement with `vim`. When you start `vim source.py`, you
    16   should press `i` to edit the text and `Esc`, `:wq<Enter>` to save changes
     16  should press `i` to edit the text and `Esc`, `:w<Enter>` to save changes
    1717  or `:q!<Enter>` to discard changes.
    1818* when developing a program, e.g. in Python, we suggest to **work in