projects
/
vim-claudy
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f0ae6c6
)
use put instead in append (not sure if better though)
author
Robin Krens
<robin@robinkrens.nl>
Thu, 2 Jan 2025 17:59:10 +0000
(18:59 +0100)
committer
Robin Krens
<robin@robinkrens.nl>
Thu, 2 Jan 2025 17:59:10 +0000
(18:59 +0100)
claudy.vim
patch
|
blob
|
history
diff --git
a/claudy.vim
b/claudy.vim
index
6a87498
..
042d6d8
100644
(file)
--- a/
claudy.vim
+++ b/
claudy.vim
@@
-146,11
+146,11
@@
function! s:SendMessage()
call add(b:chat_history, {'role': 'assistant', 'content': l:response})
" Add visual separator
-
call append('$', repeat('-', 80)
)
+
put = repeat('-', 80
)
" Add response
- put =l:response
+ put =
l:response
" call append('$', 'Claude: ' . l:response)
- call append('$', '')
+ put = repeat('-', 80) . '\n'
" Move cursor to new line
normal! G