shutosha on Nostr: #vim allows you to select a block of text just the way you select cells in a ...
#vim allows you to select a block of text just the way you select cells in a #spreadsheet .. and then you can do stuff with the block .. like delete all the content , or replace with something else ..
quoting nevent1q…2f7rTo place the character 'b' at the 13th row and 15th column in #Vim, use this command: #deepSeek
```vim
:call cursor(13,15) | normal rb
```
**Explanation:**
- `:call cursor(13,15)` moves the cursor to line 13, column 15.
- `|` separates commands in Vim's command-line.
- `normal rb` executes the normal mode command `rb`, which replaces the character under the cursor with `b`.
Run this command in normal mode to achieve the desired result.
nevent1q…pp9d