Skip to content

Commit 5082602

Browse files
GPT terminal (#38)
* Added a gpt terminal * Incremented version number
1 parent af0ddc4 commit 5082602

File tree

4 files changed

+37
-24
lines changed

4 files changed

+37
-24
lines changed

README.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Vimteractive
33
============
44
:vimteractive: send commands from text files to interactive programs via vim
55
:Author: Will Handley
6-
:Version: 2.6.0
6+
:Version: 2.7.0
77
:Homepage: https://github.com/williamjameshandley/vimteractive
88
:Documentation: ``:help vimteractive``
99

@@ -32,6 +32,7 @@ The activating commands are:
3232
- `apl <https://en.wikipedia.org/wiki/APL_(programming_language)>`__ ``:Iapl``
3333
- `R <https://www.r-project.org/>`__ ``:IR``
3434
- `sgpt <https://github.com/TheR1D/shell_gpt>`__ ``:Isgpt``
35+
- `gpt-command-line <https://github.com/kharvd/gpt-cli>`__ ``:Igpt``
3536
- autodetect based on filetype ``:Iterm``
3637

3738
Commands may be sent from a text file to the chosen REPL using ``CTRL-S``.
@@ -155,6 +156,7 @@ Supported REPLs
155156
- ``:Iapl`` Activate an apl REPL
156157
- ``:IR`` Activate an R REPL
157158
- ``:Isgpt`` Activate an sgpt REPL
159+
- ``:Igpt`` Activate an gpt-command-line REPL
158160
- ``:Iterm`` Activate default REPL for this filetype
159161

160162
Sending commands
@@ -176,7 +178,7 @@ Retrieving command outputs
176178
~~~~~~~~~~~~~~~~~~~~~~~~~~
177179

178180
CTRL-Y retrieves the output of the last command sent to the REPL. This only
179-
implemented in a subset of terminas (``:Iipython`` and ``:Isgpt``)
181+
implemented in a subset of terminas (``:Iipython``, ``:Isgpt`` and ``:Igpt``)
180182

181183
In ``Normal-mode``, CTRL-Y retrieves the output of the last command sent to the
182184
REPL and places it in the current buffer.

autoload/vimteractive.vim

+15-8
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,21 @@ function! vimteractive#get_response_sgpt()
249249
endif
250250
endfunction
251251

252+
253+
" Get the last response from the terminal for gpt-command-line
254+
function! vimteractive#get_response_gpt()
255+
let l:logfile = s:vimteractive_logfiles[b:vimteractive_connected_term]
256+
let log_data = readfile(l:logfile)
257+
let log_data_str = join(log_data, "\n")
258+
259+
let last_session_index = strridx(log_data_str, 'gptcli-session - INFO - assistant: ')
260+
let end_text = strpart(log_data_str, last_session_index+35)
261+
let price_index = match(end_text, 'gptcli-price')
262+
let last_price_index = strridx(end_text, "\n", price_index-1)
263+
return strpart(end_text, 0, last_price_index)
264+
endfunction
265+
266+
252267
" Get the last response from the terminal for ipython
253268
function! vimteractive#get_response_ipython()
254269
let l:logfile = s:vimteractive_logfiles[b:vimteractive_connected_term]
@@ -270,10 +285,6 @@ endfunction
270285
function! vimteractive#next_term()
271286
let l:current_buffer = b:vimteractive_connected_term
272287
let l:current_index = index(s:vimteractive_buffers, l:current_buffer)
273-
if l:current_index == -1
274-
echom "Not in a terminal buffer"
275-
return
276-
endif
277288
let l:next_index = (l:current_index + 1) % len(s:vimteractive_buffers)
278289
call vimteractive#connect(vimteractive#buffer_list()[l:next_index])
279290
endfunction
@@ -282,10 +293,6 @@ endfunction
282293
function! vimteractive#prev_term()
283294
let l:current_buffer = b:vimteractive_connected_term
284295
let l:current_index = index(s:vimteractive_buffers, l:current_buffer)
285-
if l:current_index == -1
286-
echom "Not in a terminal buffer"
287-
return
288-
endif
289296
let l:prev_index = (l:current_index - 1 + len(s:vimteractive_buffers)) % len(s:vimteractive_buffers)
290297
call vimteractive#connect(vimteractive#buffer_list()[l:prev_index])
291298
endfunction

doc/vimteractive.txt

+15-13
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,19 @@ things like autocompletion, leaving that to other, more developed tools such as
2828
YouCompleteMe or GitHub copilot.
2929

3030
The activating commands are
31-
- ipython |:Iipython|
32-
- julia |:Ijulia|
33-
- maple |:Imaple|
34-
- mathematica |:Imathematica|
35-
- bash |:Ibash|
36-
- zsh |:Izsh|
37-
- python |:Ipython|
38-
- clojure |:Iclojure|
39-
- apl |:Iclojure|
40-
- R |:IR|
41-
- mathematica |:Imathematica|
42-
- sgpt |:Isgpt|
31+
- ipython |:Iipython|
32+
- julia |:Ijulia|
33+
- maple |:Imaple|
34+
- mathematica |:Imathematica|
35+
- bash |:Ibash|
36+
- zsh |:Izsh|
37+
- python |:Ipython|
38+
- clojure |:Iclojure|
39+
- apl |:Iclojure|
40+
- R |:IR|
41+
- mathematica |:Imathematica|
42+
- sgpt |:Isgpt|
43+
- gpt-command-line |:Igpt|
4344
- autodetect based on filetype |:Iterm|
4445

4546
Commands may be sent from a text file to the chosen REPL using CTRL-S. If
@@ -115,6 +116,7 @@ Supported terminals *vimteractive-terminals*
115116
*:Iapl* Activate an apl REPL
116117
*:IR* Activate an R REPL
117118
*:Isgpt* Activate an sgpt REPL
119+
*:Igpt* Activate an gpt-command-line REPL
118120
*:Iterm* Activate a REPL based on current filetype
119121

120122
------------------------------------------------------------------------------
@@ -139,7 +141,7 @@ create one for you using |:Iterm|.
139141
Retrieving command outputs *v_CTRL_Y*
140142

141143
CTRL-Y retrieves the output of the last command sent to the REPL. This only
142-
implemented in a subset of terminas (|:Iipython| and |:Isgpt|)
144+
implemented in a subset of REPLs (|:Iipython|, |:Isgpt| and |:Igpt|)
143145

144146
In |Normal-mode|, CTRL-Y retrieves the output of the last command sent to the
145147
REPL and places it in the current buffer.

plugin/vimteractive.vim

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ let g:vimteractive_commands.apl = 'apl'
4040
let g:vimteractive_commands.R = 'R'
4141
let g:vimteractive_commands.mathematica = 'math'
4242
let g:vimteractive_commands.sgpt = 'sgpt --repl <LOGFILE>'
43+
let g:vimteractive_commands.gpt = 'gpt --log_file <LOGFILE>'
4344

4445
" Override default shells for different filetypes
4546
if !has_key(g:, 'vimteractive_default_shells')
@@ -68,7 +69,8 @@ let g:vimteractive_slow_prompt.clojure = 200
6869

6970
let g:vimteractive_get_response = {
7071
\ 'ipython': function('vimteractive#get_response_ipython'),
71-
\ 'sgpt': function('vimteractive#get_response_sgpt')
72+
\ 'sgpt': function('vimteractive#get_response_sgpt'),
73+
\ 'gpt': function('vimteractive#get_response_gpt')
7274
\}
7375

7476
" Plugin commands

0 commit comments

Comments
 (0)