Re: coding with AI in vim (and writing in general)

2023-08-20 Thread Kit
It's looking good, but it is paid for. I use the chat with a clipboard. I modify a source code in the chat, then paste it into Vim. -- Kit ne 20. 8. 2023 v 15:45 odesílatel Renato Fabbri napsal: > > I found: https://github.com/madox2/vim-ai > have you used this or something else or wha

Re: execute an alias with vim

2019-07-10 Thread Kit
> I really don't understand what you want with your alias .bashrc??? I use this alias for edit ~/.bashrc and reload it. > And when you write > :new . > select and > What do you mean? select what? Select file in Vim. Simply open directory and select file. Enter will open thi

Re: execute an alias with vim

2019-07-10 Thread Kit
c, so simple. And just to type "bar" in my terminal > to access the file. Try this: :new . select and > So, I tried to create one file with shebang (in one directory in my > $PATH, ~/bin is not my path). add "$HOME/bin" into your PATH. This is the standard for your binari

Re: Transposing delimited data?

2019-05-24 Thread Kit
https://github.com/salsifis/vim-transpose -- Kit 2019-05-24 22:11 GMT+02:00, Tim Chase : > I know this sounds weird to attempt in vi/vim, but after about the > 5th time I've wanted to do it, I figured I'd at least ask if someone > had brilliant ideas. It's usually a copy/paste of

Re: how to call vim on files that are the results of a grep -l command in bash?

2019-05-24 Thread Kit
grep -l 'foo' * | xargs vim -- Kit 2019-05-24 13:40 GMT+02:00, DwigtArmyOfChampions > I tried "grep -l 'foo' * | vim" and "grep -l 'foo' * | xargs | vim' but > those didn't work. Any ideas? -- -- You received this message from the "vim_use" maillist. Do not

Re: query about vim replacement

2018-12-13 Thread Kit
]+ > 3) -from [A-Z]+ replaced with -from abc.abc_core.[A-Z}+ > 4) -from * replaced with -from abc.abc_core.* > > can you please help me in this regard. > Thanks, > Kumar :%s/-from {/-from {abc.abc_core./g :%s/-from \([A-Za-z*]\+\)/-from abc.abc_core.\1/g -- Kit -- -- You rec

Re: How to set noexpandtab for a specific file

2018-11-24 Thread Kit
2018-11-24 15:46 GMT+01:00, Bradley Bell : > How do I set noexpandtab for automake.am automatically, so I do > not forget to enter it every time I edit that file ? ~/.vim/ftplugin/automake.vim: set noexpandtab -- Kit -- -- You received this message from the "vim_use" maillist.

Re: Noswap and Nobackup when editing python on a specific device (mounted) on Linux

2018-11-22 Thread Kit
$ mkdir ~/tmp ~/.vimrc: set backupdir=~/tmp// set directory=~/tmp// set undodir=~/tmp// -- Kit -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/mailli

Re: Using Vim as a Browser Bookmark Manager - Auto Recursive Folding

2018-11-15 Thread Kit
an start a browser with a new tab from Vim when the cursor is over an > URL - so if I can get the auto folding working I should have everything > I need. If I have a structure like: Try YAML structure or Markdown. -- Kit -- -- You received this message from the "vim_use" ma

Re: How to use vim to write a aligned plain text (txt) file as the vim help files?

2018-09-22 Thread Kit
2018-09-22 21:02 GMT+02:00, Hausen Schaff : > Interestingly, I can't find a good way to write such aligned texts by > vim. Every plugin use space to align words. Some bring this issue up on > these project homes, and no solution is provided. :set noexpandtab -- Kit -- -- You