mirror of
https://github.com/iggredible/Learn-Vim
synced 2024-11-23 11:03:03 +00:00
Remove special characters
This commit is contained in:
parent
8d71094f36
commit
ac5b687218
2 changed files with 8 additions and 8 deletions
|
@ -76,12 +76,12 @@ Here are what they mean:
|
|||
|
||||
The take-home here is that you can modify your own paths. Let's assume this is your project structure:
|
||||
```
|
||||
▾ app/
|
||||
▸ assets/
|
||||
▾ controllers/
|
||||
application_controller.rb
|
||||
comments_controller.rb
|
||||
users_controller.rb
|
||||
app/
|
||||
- assets/
|
||||
- controllers/
|
||||
- application_controller.rb
|
||||
- comments_controller.rb
|
||||
- users_controller.rb
|
||||
...
|
||||
```
|
||||
|
||||
|
|
|
@ -645,8 +645,8 @@ small dog
|
|||
Assume your directory structure looks like this:
|
||||
|
||||
```
|
||||
├── food.txt
|
||||
├── animal.txt
|
||||
- food.txt
|
||||
- animal.txt
|
||||
```
|
||||
|
||||
First, capture both `food.txt` and `animal.txt` inside `:args`. Recall from earlier chapters that `:args` can be used to create a list of file names. There are several ways to do this from inside Vim:
|
||||
|
|
Loading…
Reference in a new issue