What is Nostr?
shutosha
npub1ttc…m0da
2025-02-06 16:39:23

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 ..


To 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
Author Public Key
npub1ttc8j3sx59d4vs0zt23r6p90fjcd040x3vgu4j68u44ydx8u4rzqkxm0da