Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ability to exclude files from context #482

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion autoload/codeium.vim
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ function! codeium#Complete(...) abort
let current_bufnr = bufnr('%')
let loaded_buffers = getbufinfo({'bufloaded':1})
for buf in loaded_buffers
if buf.bufnr != current_bufnr && getbufvar(buf.bufnr, '&filetype') !=# ''
if buf.bufnr != current_bufnr && getbufvar(buf.bufnr, '&filetype') !=# '' && ! getbufvar(buf.bufnr, 'codeium_excluded')
call add(other_documents, codeium#doc#GetDocument(buf.bufnr, 1, 1))
endif
endfor
Expand Down
14 changes: 14 additions & 0 deletions doc/codeium.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ COMMANDS *:Codeium*
:Codeium EnableBuffer Re-enable Codeium completions in the current
buffer after running :Codeium DisableBuffer

*:Codeium_ExcludeBuffer*
:Codeium ExcludeBuffer Exclude current buffer from codeium completion
contexts

*:Codeium_Toggle*
:Codeium Toggle Enable Codeium completions if they are disabled.
Disable Codeium completions if they are enabled. Does
Expand Down Expand Up @@ -153,6 +157,16 @@ b:codeium_virtual_text_priority
let b:codeium_virtual_text_priority = 1000
<

*b:codeium_excluded*
b:codeium_excluded
Buffer-local flag that controls whether the buffer is
excluded from codeium's context. If not set, buffer
is included as context as default. Set it to `v:true`
to exclude the buffer from context.
>
let b:codeium_excluded = v:true
<

MAPS *codeium-maps*

*codeium-i_<Tab>*
Expand Down
6 changes: 6 additions & 0 deletions plugin/codeium.vim
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,12 @@ endfunction

command! CodeiumToggle :silent! call CodeiumToggle()

function! CodeiumExclude() " Exclude current buffer from Codeium context
let b:codeium_excluded = v:false
endfun

command! CodeiumExclude :silent! call CodeiumExclude()

function! CodeiumManual() " Disable the automatic triggering of completions
let g:codeium_manual = v:true
endfun
Expand Down