fix grok's stupid newline bug

This commit is contained in:
2025-08-31 23:24:28 +02:00
parent e9a5c40249
commit 53e5254c3c
6 changed files with 54 additions and 6 deletions

View File

@@ -61,4 +61,18 @@ This is a quick reference guide for common Vim commands. Vim has several modes:
- Record macros: `q{letter}` to start, `q` to stop, `@{letter}` to replay.
- Vim is highly customizable via `.vimrc`.
## Advanced Commands\n- `:e filename`: Open a file\n- `:bd`: Close current buffer\n- `:sp` / `:vsp`: Split horizontal / vertical\n- `Ctrl + ]` : Jump to tag (with ctags)\n- `q:` : Open command history\n- `:%s/old/new/gc` : Replace with confirmation\n\n## Plugins and Extensions\n- Popular plugins: NERDTree for file exploration, vim-fugitive for Git integration.\n- Install with Vim-plug or Pathogen.\n\nSources: Based on https://devhints.io/vim and other web resources.\n\nFor more, type `:help` in Vim!
## Advanced Commands
- `:e filename`: Open a file
- `:bd`: Close current buffer
- `:sp` / `:vsp`: Split horizontal / vertical
- `Ctrl + ]` : Jump to tag (with ctags)
- `q:` : Open command history
- `:%s/old/new/gc` : Replace with confirmation
## Plugins and Extensions
- Popular plugins: NERDTree for file exploration, vim-fugitive for Git integration.
- Install with Vim-plug or Pathogen.
Sources: Based on https://devhints.io/vim and other web resources.
For more, type `:help` in Vim!