Seth il y a 8 ans
Parent
révision
a8fd9c65f4
1 fichiers modifiés avec 3 ajouts et 2 suppressions
  1. 3
    2
      README.md

+ 3
- 2
README.md Voir le fichier

94
 
94
 
95
 There are many text editors out there. We will be using an editor called VIM (short for VI iMproved -- it is a clone of the editor VI with some improvements). Other options that you can explore on your own include emacs and nano (a clone of a program called pico). Here are the VIM commands we'll use along with a few other useful basics (there are many, many, many many more):
95
 There are many text editors out there. We will be using an editor called VIM (short for VI iMproved -- it is a clone of the editor VI with some improvements). Other options that you can explore on your own include emacs and nano (a clone of a program called pico). Here are the VIM commands we'll use along with a few other useful basics (there are many, many, many many more):
96
 
96
 
97
-- `:w` - Write; writes the current contents of the buffer (editor) to a file. 
97
+- `:w` - Write; writes the current contents of the buffer (editor) to a file.
98
 - `:q` - Quit; Quits VIM. Complains if you have unsaved changes (use `:w` first, or `:q!` to force quit and abandon your changes)
98
 - `:q` - Quit; Quits VIM. Complains if you have unsaved changes (use `:w` first, or `:q!` to force quit and abandon your changes)
99
 - `:set number`/`:set nonumber` - Enables/disables line numbers.
99
 - `:set number`/`:set nonumber` - Enables/disables line numbers.
100
 - `a` - Switch to insert mode after the current character. `A` goes to the end of the line instead.
100
 - `a` - Switch to insert mode after the current character. `A` goes to the end of the line instead.
175
 - Now you're stuck without your prompt; but we can fix that! Press `Ctrl`+`Z` to suspend (not kill) that program.
175
 - Now you're stuck without your prompt; but we can fix that! Press `Ctrl`+`Z` to suspend (not kill) that program.
176
 - Now you've got your terminal back, but if you type `jobs` you'll see that python is currently stopped. You can bring it back with `fg`, but that will block your prompt again; instead, use `bg` to resume it in the background.
176
 - Now you've got your terminal back, but if you type `jobs` you'll see that python is currently stopped. You can bring it back with `fg`, but that will block your prompt again; instead, use `bg` to resume it in the background.
177
 - Now that you've resumed python in the background, you can see it listed as running in `jobs`. Bring it back to the foreground with `fg` and then kill it with `Ctrl`+`C`
177
 - Now that you've resumed python in the background, you can see it listed as running in `jobs`. Bring it back to the foreground with `fg` and then kill it with `Ctrl`+`C`
178
- 
178
+
179
 
179
 
180
 ## Other Resources
180
 ## Other Resources
181
 
181
 
193
 3. "Command Line Crash Course" http://learnpythonthehardway.org/book/appendixa.html
193
 3. "Command Line Crash Course" http://learnpythonthehardway.org/book/appendixa.html
194
 4. "VIM 101" https://www.linux.com/learn/vim-101-beginners-guide-vim
194
 4. "VIM 101" https://www.linux.com/learn/vim-101-beginners-guide-vim
195
 
195
 
196
+Finished.