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

Plugin introducing a (control?) character into vim buffers #83

Closed
maxscott opened this issue Feb 27, 2023 · 4 comments · Fixed by #181
Closed

Plugin introducing a (control?) character into vim buffers #83

maxscott opened this issue Feb 27, 2023 · 4 comments · Fixed by #181
Assignees

Comments

@maxscott
Copy link

Description

I'm seeing a "report mode settings" control sequence-looking thing: ^[[?12;4$y inserted at the beginning of vim buffers when the plugin in activated in my vimrc via:

Plug 'Exafunction/codeium.vim'
imap <C-g>   <Cmd>call codeium#Accept()<CR>

I could be misconfiguring the plugin somehow, or using incompatible tools, but this seems to be bug in the vim plugin.

Current Workaround

The character goes away when I remove the plugin and imap call from my vimrc.

Versions

VIM - Vi IMproved 9.0 (2022 Jun 28, compiled Feb 24 2023 12:08:45)
macOS version - x86_64
Included patches: 1-1350

Iterm: Build 3.4.19

@maxscott maxscott changed the title Plug introducing a (control?) character into vim buffers Plugin introducing a (control?) character into vim buffers Feb 27, 2023
@pqn
Copy link
Contributor

pqn commented Mar 14, 2023

@fortenforge I can also reproduce this on macOS but not Ubuntu

@toofar
Copy link
Contributor

toofar commented Jul 8, 2023

I can reproduce this (long line of control characters printed over the buffer as pictured in #126) with wezterm and vim 9.0 (patches 1-1658). On the same system using urxvt it only puts a couple of characters there instead of a huge list.

I did the old "follow the logic flow and comment out functionality until the symptoms change" trick and traced it to these two system() calls: https://github.com/Exafunction/codeium.vim/blob/7e0054a/autoload/codeium/server.vim#L123-L124

Removing the substitute and using echom on the raw string returned from system() it looks like the "garbage" on the screen is control characters that are read after the end of the output from uname. Interestingly, when I comment out the call to StartLanguageServer that is triggering that code path the garbage doesn't show up when I later call CodeiumEnable, so possibly it's something that only happens when system() is called while vim is starting up before it's initialized the terminal fully.

Anyway, :help system says to prepend the calls with silent when you don't need user input because it "avoids stray characters showing up on the screen", and that seems to resolve the issue here just fine:

diff --git i/autoload/codeium/server.vim w/autoload/codeium/server.vim
index 569c4abf5171..9cd65ea9fa73 100644
--- i/autoload/codeium/server.vim
+++ w/autoload/codeium/server.vim
@@ -120,8 +120,8 @@ function! s:SendHeartbeat(timer) abort
 endfunction

 function! codeium#server#Start(...) abort
-  let os = substitute(system('uname'), '\n', '', '')
-  let arch = substitute(system('uname -m'), '\n', '', '')
+  silent let os = substitute(system('uname'), '\n', '', '')
+  silent let arch = substitute(system('uname -m'), '\n', '', '')
   let is_arm = stridx(arch, 'arm') == 0 || stridx(arch, 'aarch64') == 0

   if os ==# 'Linux' && is_arm

@fortenforge
Copy link
Contributor

Wow really good find

@pqn
Copy link
Contributor

pqn commented Jul 8, 2023

@toofar thanks for looking into this. Happy to accept this as a PR if you'd like to create one, otherwise we'll likely make this change ourselves then.

@pqn pqn closed this as completed in #181 Jul 8, 2023
pqn pushed a commit that referenced this issue Jul 8, 2023
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: #83
Fixes: #126
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
MissLov3ly added a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
commit ced77f16b2855650326201ed3dbd910dd9e0a373
Merge: c9a4ae5 d35c9a4
Author: i.am_pi3–2024_CORE <Miss.Lov3ly@proton.me>
Date:   Mon Feb 12 23:07:05 2024 -0600

    Merge branch 'main' into pr/252

commit c9a4ae56de796e6a0d814f45ba4944bdc1c8533f
Merge: 1e14ec2 1dbc204
Author: i.am_pi3–2024_CORE <Miss.Lov3ly@proton.me>
Date:   Mon Feb 12 23:06:47 2024 -0600

    Merge branch 'feature/filetypes-disabled-by-default' of https://github.com/zArubaru/codeium.vim into pr/252

commit 1e14ec29aece815cc2d36158ce5c1ba2eb49919b
Author: Alvar Hyvönen <zArubaru@users.noreply.github.com>
Date:   Mon Oct 16 14:36:28 2023 +0300

    Add new variable: `g:codeium_filetypes_disabled_by_default`.

    Enables finer control of when to enable codeium.

commit a5f187c7dc688a01d48a60ae19ea4b6cdf5ae34c
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Oct 13 18:00:53 2023 -0700

    Undo README revert (#251)

commit da7fb50650738bf3fdf4d22320339d0bc7d88192
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Oct 12 20:30:55 2023 -0700

    Project import generated by Copybara. (#250)

    GitOrigin-RevId: 84721408455bc3335449c351005778c3b177bfcc

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 11b313df012eaab1ad28c88e381f096ca6431b84
Author: Ingo Meyer <1449087+IngoMeyer441@users.noreply.github.com>
Date:   Wed Oct 11 19:33:26 2023 +0200

    Describe vim-airline support in README.md (#247)

    Vim-airline has out-of-the-box support for Codeium, so no extra configuration is needed.

commit 6470467030a6f0617d292f1ed044b0ebe67bb6a8
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Oct 10 17:01:52 2023 -0700

    Project import generated by Copybara. (#246)

    GitOrigin-RevId: 703705d0b32fc18810ff59214ba1b5ef3d1e3f5d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 0f64f413c047c316b54f876049ba729775247a8a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Oct 9 14:24:47 2023 -0700

    Project import generated by Copybara. (#245)

    GitOrigin-RevId: d595315dcb57bc41cb1b45907c808ee70244c2ea

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 501f5961e01004b22e249a53b56e243f94c5d7a4
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Thu Oct 5 11:13:31 2023 -0700

    Add simple icons asset (#241)

    * Add asset

    * Minify and optimize

commit d06d7daf1a29c26c236188b59b91005cf47fbc2c
Author: cprn <cprn@users.noreply.github.com>
Date:   Thu Oct 5 20:09:55 2023 +0200

    error handling for missing `gzip` (#240)

commit dda41e75d31aca3faa2204dc1e460715bc30cf98
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Oct 2 18:14:49 2023 -0700

    Update server.vim (#238)

commit 79ffc52b7a8e4c6139838b5c1af2073bfcd4fe9b
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Tue Sep 26 15:17:36 2023 -0700

    Simple b&w logo (#234)

commit f2cdbe4eb3b09645fc4e7eb669f82fd57ffdac86
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Tue Sep 26 14:57:35 2023 -0700

    Add square codeium asset (#233)

commit aaaf4e03665a36091ad67b14c71a8712f749522a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Sep 21 11:59:04 2023 -0700

    Project import generated by Copybara. (#229)

    GitOrigin-RevId: 970f82797d30f841f42ce5b0bba091627361c495

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit b432615e9ddd3a013bc941473243ee54cb6581d0
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Wed Sep 20 23:57:10 2023 -0700

    Update README.md (#228)

commit 40fae24567e3c8d2f851618b183494475b0047e1
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Wed Sep 20 12:17:09 2023 -0700

    Add `built with Codeium` badge to readme (#227)

commit 3e38385ecdeb2e708fc409e43bfa8029171095d7
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Sep 15 16:24:59 2023 -0700

    Project import generated by Copybara. (#224)

    GitOrigin-RevId: be3c8755a3cfb564d2cdca46c8c2c6bcf4625919

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 86a1ebdd09f0064434b0ed8adbb6b239d00e47b1
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Sep 11 16:26:37 2023 -0700

    Project import generated by Copybara. (#221)

    GitOrigin-RevId: 040be74004fd62dc3cff56b06252c8394415dc8d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 39f4ecfd12c058936eec16e420c200904b96c910
Author: Nick Jiang <njiang747@gmail.com>
Date:   Tue Sep 5 19:29:21 2023 -0700

    Project import generated by Copybara. (#218)

    GitOrigin-RevId: bad36281674ad2498039da69be67954079dde3bd

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 99129c81fd31e24d7e2dfe4ed2dffd4ed0218cc8
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Aug 29 17:25:32 2023 -0700

    Project import generated by Copybara. (#216)

    GitOrigin-RevId: c5b042b112683153ec80eebd322b9803dce6c6aa

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 99744c45880c4da44ccd263e63ee0ebbf3edb910
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 28 20:19:22 2023 -0700

    Project import generated by Copybara. (#214)

    GitOrigin-RevId: 4c847c085773836ab6a504d413a86bb9dd03b95a

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 732eed9bdff35ec205e3922c57d7650c892bdbe1
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Aug 24 19:20:54 2023 -0700

    Project import generated by Copybara. (#210)

    GitOrigin-RevId: ce0ab9b479fe329e7781f35d19f0f7841057daa4

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit a2fe101e8ec14b7f503805a2de168011d2703bd0
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Aug 23 12:25:04 2023 -0700

    Project import generated by Copybara. (#209)

    GitOrigin-RevId: afaee99af9700e0237b6327d363cebfb903b18f2

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 8f5a70f015b721f5b203bb7d6f1e1030dd8be798
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 21 17:46:48 2023 -0700

    Project import generated by Copybara. (#207)

    GitOrigin-RevId: a2b18a1b8b609a5e70a1e69eb0114e34617208d0

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit a3c93fe9a20fb3a12a9315f8002abb34917e1423
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 21 15:17:06 2023 -0700

    Project import generated by Copybara. (#206)

    GitOrigin-RevId: 71c7c0f034841677fe94b76b9b687e6e2439805e

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit e415b42b01262e30d8154c7a4e3ce6740624e0ed
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 21 13:23:06 2023 -0700

    Project import generated by Copybara. (#205)

    GitOrigin-RevId: 8d5b6de767c1649a78d40738c6671f4e1db64ba4

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit fcc71d3fcb81be4f72dd2ab06248297ab6798cf7
Author: Nick Jiang <njiang747@gmail.com>
Date:   Fri Aug 18 11:47:50 2023 -0700

    Project import generated by Copybara. (#204)

    GitOrigin-RevId: ef3fd16f4147192500549f3f3d03245f39cdb219

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 917f4883695c43cba4b9475e4aef355487915b30
Author: RotrixX <ncusnir43@gmail.com>
Date:   Wed Aug 16 20:12:51 2023 +0200

    feat: add lazy installation option (#203)

commit f1e03822952fcbeb581af97f19b3279b2f691b12
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Aug 3 20:20:35 2023 -0700

    Project import generated by Copybara. (#198)

    GitOrigin-RevId: dfc7cc4afed98dc4bc73b479f91437691229d379

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 91e174fc9d0443f79ca350fad5714d4e24b8d5cd
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Aug 1 16:18:25 2023 -0700

    Project import generated by Copybara. (#197)

    GitOrigin-RevId: e17a58f7dc56ab05219704be040171bfb8aefa9a

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 4c540ec4b01dc10b7d2440ccb240dd552a828a6b
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jul 27 20:26:15 2023 -0700

    Project import generated by Copybara. (#194)

    GitOrigin-RevId: fc12423dc5d722756229443a7e921ee252b4358b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 89a29b84a3cdb121c0bea7332faca08f127a9ea6
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Sun Jul 23 19:16:34 2023 -0700

    Project import generated by Copybara. (#192)

    GitOrigin-RevId: f77e4ce3bb04b5124e9168c95508c6029217981d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 0b592b4988360714a21767cc4e2c1a6b3e145458
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Jul 18 14:47:57 2023 -0700

    Project import generated by Copybara. (#189)

    GitOrigin-RevId: da66d52916816f71f25296ee57784c1f93b1a190

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 30260d043bce437b3e55c7bfb68f77e5dab98f25
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Jul 12 20:03:25 2023 -0400

    Project import generated by Copybara. (#186)

    GitOrigin-RevId: 6c2f5348dfdfd30ec308ff0d2cc596b53a4172cb

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit fc5a722332781c11ccb45562b5e5d2781bd0f9bd
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Jul 10 20:53:56 2023 -0700

    Project import generated by Copybara. (#184)

    GitOrigin-RevId: d8a23153e36c19422359bedb7b6d370585fb5284

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit afb2464fcae3bb7e75d767aef449f57b53b84de3
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Jul 10 16:28:56 2023 -0700

    Project import generated by Copybara. (#183)

    GitOrigin-RevId: 240edaa0f2f28e877a0b12779836b9f6142c8a88

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit e71edddc4af63ba9730b2a14276d725d33f29af7
Author: toofar <toofar@spalge.com>
Date:   Sun Jul 9 10:40:40 2023 +1200

    silence non-interactive system() calls (#181)

    Control characters can leak onto the screen in some configurations
    (observed with vim on linux with some terminals). `:he system` says to
    prepend calls with `silent` to prevent that.

    Fixes: #83
    Fixes: #126

commit fff1b0098f31a22e702ba74421fd71d2356b99c3
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Jul 5 23:46:52 2023 -0400

    Project import generated by Copybara. (#180)

    GitOrigin-RevId: 78867fa034464755f4fc95da7d3b730adb1241ef

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bf2705952bb473606243877fe56b19e3a336051d
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Jul 5 16:27:21 2023 -0400

    Bring to head of internal repo (#179)

    * Project import generated by Copybara.

    GitOrigin-RevId: 483bb06b900bc52f8e093cfcfa473faed3cb6cc1

    * Undo removal

    ---------

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 6848b07ac23c324a0e8984a6fbb9882af5b23021
Author: Igor <20246185+igor-starostenko@users.noreply.github.com>
Date:   Mon Jul 3 14:09:01 2023 -0700

    Added branch main for vim plug installation instructions (#178)

commit c7554d46c18da3942681ba5a9d508b0d10e7f4e2
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Jun 30 18:18:58 2023 -0700

    Project import generated by Copybara. (#174)

    GitOrigin-RevId: 174b2d15ccc4b73b026adf8ce4bd3e4bab9ee16b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit c8c2a0b6e35d8495de76239b33dca42deec66809
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jun 29 21:26:52 2023 -0700

    Project import generated by Copybara. (#172)

    GitOrigin-RevId: 2e9c0a84e8d9d6293cc63d0511bd48612e837fbb

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 33f342340a7641411f1b4a66b29d8bfc1a5911ba
Author: Nick Jiang <njiang747@gmail.com>
Date:   Thu Jun 29 00:17:32 2023 -0400

    Project import generated by Copybara. (#171)

    GitOrigin-RevId: bf5338abb692919b8084400b69d998fa3e657230

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f24bc7dfbe5d19deabc6abb84d99e9bfa04a418d
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Jun 28 01:08:33 2023 -0700

    Project import generated by Copybara. (#169)

    GitOrigin-RevId: 0254f337da11c591aebe10a3fe88ce8876b29be5

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit c302e231de97bb820642c66b256a95bf2b12baea
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Jun 27 22:13:26 2023 -0700

    Project import generated by Copybara. (#167)

    GitOrigin-RevId: abbd4f8b98305ff9ad6808c438abe19c41352a88

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit a60002f370b980aa01c89d15f55c84ec3b6845b4
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jun 27 00:16:02 2023 -0700

    Project import generated by Copybara. (#166)

    GitOrigin-RevId: f8b0ef3c2ff5e7295d929bb9e8e19d90ce843135

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 1393a50b20564d425d8b45b0ca18d09f35be45e4
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Sun Jun 25 16:45:25 2023 -0700

    Project import generated by Copybara. (#165)

    GitOrigin-RevId: f697d2a12d9286f75c0cd44c9ee232542c60c7a4

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 1ca212dac7456de66678d9c7041cf3ef1ff880b3
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Jun 21 14:24:49 2023 -0700

    Project import generated by Copybara. (#162)

    GitOrigin-RevId: 8a390d328578dee5561445d2a0c59d593fa4f230

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 08e0d969d00f98a29f4228693f15995ae2cdfa44
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jun 20 11:30:00 2023 -0700

    Project import generated by Copybara. (#158)

    GitOrigin-RevId: 4db09f8757a9770024da5df1d610f3e3b0141015

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 542ccdb046543bae4cdd6cbe02298c44461111f2
Author: Nick Jiang <njiang747@gmail.com>
Date:   Thu Jun 15 17:36:30 2023 -0400

    Project import generated by Copybara. (#155)

    GitOrigin-RevId: 32637667637bdd5f42e09d44aa74cb12b630b392

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit e450d55f5e835a94f8a329523534be764707d2d7
Author: Prem Nair <prem@exafunction.com>
Date:   Mon Jun 12 12:03:00 2023 -0700

    Project import generated by Copybara. (#154)

    GitOrigin-RevId: c39e95aeebaf6a156a5925ebe68a83e82ed31f94

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit fad68c368cd94dd648df2be752a3a6a66afda562
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Jun 12 11:11:40 2023 -0700

    Project import generated by Copybara. (#153)

    GitOrigin-RevId: 8fb0f553a54374a08a96ecd12b6ff39de81c53ab

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bff2166d1783611680e216f7529af79a69fbc16c
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jun 8 22:19:12 2023 -0700

    Project import generated by Copybara. (#152)

    GitOrigin-RevId: 4844b908248c1f5a5cee851347b7f083b7ae83c5

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit c1d4e116469bce1925e2fe6730b2469528c7ebc2
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jun 1 15:24:42 2023 -1000

    Project import generated by Copybara. (#147)

    GitOrigin-RevId: bac812133dd66803b10e6d95f4d7e61700f43d41

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 127913fb15a3f140f7c75c201222858f0e8f4cc0
Author: Shougo <Shougo.Matsu@gmail.com>
Date:   Thu May 18 03:17:32 2023 +0900

    Add g:codeium_tab_fallback documentation (#143)

commit efb0f91a7b96b80b0fe213514b8ee33c1ead4371
Author: Shougo <Shougo.Matsu@gmail.com>
Date:   Thu May 18 03:16:44 2023 +0900

    Add g:codeium_render (#137)

commit d6fcc96c1aa373ed743823fafe95181ee5ffad36
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon May 15 19:20:26 2023 -0700

    Project import generated by Copybara. (#141)

    GitOrigin-RevId: 75d254761a76e3d2576c07698e0c97697785ead7

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 85392b0a08aab06f3237db6395a52fd6a9fd4c65
Author: Cy-r0 <cirocursio@live.it>
Date:   Sat May 13 03:25:58 2023 +0200

    Document g:codeium_idle_delay (#138)

commit 8b3929dbece52ae9d855299ac482013d4f30ffde
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon May 8 21:15:59 2023 -0700

    Project import generated by Copybara. (#131)

    GitOrigin-RevId: 25dacd00449ae99d71db5a92a0580a6a3d83256c

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bd2a7e39caf7853d6647fc1b7a770859642cb35d
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri May 5 18:02:57 2023 -0700

    Project import generated by Copybara. (#128)

    GitOrigin-RevId: 8a863af5df547904466964a1182fb15c6f8b7298

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 5fb677189a292433094f37d456e9e283abc5fc58
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Apr 28 11:09:04 2023 -0700

    Project import generated by Copybara. (#123)

    GitOrigin-RevId: f5c8e5e371939305787ab7dc7d05ceca4ffd0faa

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit aa48378b8824abf355b7a38a23440cb1854dd381
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Apr 17 14:43:11 2023 -0700

    Project import generated by Copybara. (#117)

    GitOrigin-RevId: 888d3d4e361b960f4ca2d7fd8ba0b9842374a365

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 44641bdcbe8fbf5e165519d990f7f8681ba17b6a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Apr 12 12:39:36 2023 -0700

    Project import generated by Copybara. (#113)

    GitOrigin-RevId: 78e91e0e8baf75b82084e06ccb68ec4d34cb943f

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 8daa08881103994c9e2d93b1d84438fd240bf2f9
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Apr 4 18:48:44 2023 -0700

    Project import generated by Copybara. (#108)

    GitOrigin-RevId: 04a4e037d943d64df133da90430fc3114e9e78ce

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 366129751cb5c6315c821654792c21f6064694f3
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Mar 31 16:05:40 2023 -0700

    Project import generated by Copybara. (#105)

    GitOrigin-RevId: 4ab71248a6c943067683395710a823a67c34de8b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 5389c64dff779d81fb1e60b0527446caa8b0bf8d
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Mar 27 16:59:29 2023 -0700

    Project import generated by Copybara. (#102)

    GitOrigin-RevId: f67347cc213b290715507ac46c18d9081f00083e

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit d654bea06980a54eca06dcfa04587b83412f9ef3
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Mar 21 12:32:50 2023 -0700

    Project import generated by Copybara. (#99)

    GitOrigin-RevId: 0b79c48149bb83a6fee9ff31cabb073f697ad43b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bb7a28e037fed310d7a04f76ada7bedbe3bb7ff2
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Mar 17 14:32:31 2023 -0700

    Project import generated by Copybara. (#98)

    GitOrigin-RevId: 1c11f4002e642bae71aada763e358e31d82f85a3

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 2c2dfd05c7c722637f72ab33778b8d2b9c26fdc8
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Mar 16 13:28:57 2023 -0700

    Project import generated by Copybara. (#96)

    GitOrigin-RevId: f26ec6abba54ef8e239cd2af4ea6f02b0a349297

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 1c60af3b405e8256f55cfe1eebce12f4b5cbf798
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Mar 13 19:31:08 2023 -0700

    Project import generated by Copybara. (#92)

    GitOrigin-RevId: 4f10b6dc1f581f2d8f9ea9b0b4a42c7567d47c55

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 04a67ac9c60725ca04872cccf3200c8c4fc67389
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 24 14:46:46 2023 -0800

    Project import generated by Copybara. (#81)

    GitOrigin-RevId: b4d7d066e79c72c19373fe4bd580eb74d5ce4d7d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 6f66c2b175ba593199a10969b08cf204c95a2f9d
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 17 17:54:07 2023 -0800

    Project import generated by Copybara. (#78)

    GitOrigin-RevId: f400b5e0b2f864482db05ca353701c1678e765f2

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f8a89419d36cdb0b402469272883e5024921f733
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 17 14:42:56 2023 -0800

    Project import generated by Copybara. (#77)

    GitOrigin-RevId: 76b2d3f34f2ce4e8cb0a51fb6798056ea6e36915

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit b938864885f60729444f5600e4fc6e85fcb0babc
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 17 11:17:44 2023 -0800

    Project import generated by Copybara. (#76)

    GitOrigin-RevId: 0ab711e2db04ea61d87d85ab0091c8d785f8c9d6

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f4941355312a070cc68e2a210df2a967d74405b6
Author: Prem Nair <prem@exafunction.com>
Date:   Sun Feb 12 20:04:59 2023 -0800

    Project import generated by Copybara. (#74)

    GitOrigin-RevId: 257cf5336d5387c84a99c49efbca27bc1e0a5864

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f8d1b1001cd9dd99070ae273f2b5b9b61a087328
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Feb 9 13:47:32 2023 -0800

    Update badge

commit 263264889d5d49674e5c9fdab1758ebc5c4955b0
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Feb 9 11:39:39 2023 -0800

    Project import generated by Copybara. (#69)

    GitOrigin-RevId: 4525f67fbf6c4a631029e996dfe490d880e8e231

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 2ab2ab53997332e65f04e941b50a086ab99bd760
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Feb 9 08:02:25 2023 -0800

    Project import generated by Copybara. (#68)

    GitOrigin-RevId: 9f549c82f5aaa25c2877fdb0eae17005d2f3a3ed

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 045c6113a77ddedffd405d9ab25d093e12eb45ca
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Feb 8 11:45:08 2023 -0800

    Project import generated by Copybara. (#63)

    GitOrigin-RevId: 45a561afccf8f70f107817e3e356afa463fb85fc

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 301573408d62afacc1455900cfdf67ea1f26cf27
Author: Krzysztof Lewandowski <krz.lewandowski@gmail.com>
Date:   Thu Feb 2 15:06:52 2023 +0100

    Add statusline support (#46)

    * Remove duplicated suggestions

    * Add statusline support

    * Revert "Remove duplicated suggestions"

    This reverts commit a33c6e284b321e7a08d67c35021d8041f875c0ff.

    * Add Codeium logo to statusline examples

commit 4eb0bf664beb42e08ac1da3a2e30cd118dc157b4
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Feb 1 12:19:28 2023 -0800

    Project import generated by Copybara. (#57)

    GitOrigin-RevId: b9427e0cd5dae1ff61353d1d3c5a44c35666270f

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 9c59f2f7a21fb67c6485325ad31fc8d3a2c2075a
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jan 31 22:34:16 2023 -0800

    Project import generated by Copybara. (#50)

    GitOrigin-RevId: 364f8c24e54cfb9a1b711880457c9d07b9e7423f

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit ff023d6e9cc4bc87303c694d289e81fe49ded2cf
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jan 31 18:31:29 2023 -0800

    Project import generated by Copybara. (#49)

    GitOrigin-RevId: d11b4e0ae6df655a544d5f93669f878ae63e36bc

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit aeecbd0b5405ddadb571f426d3d238f100c43df7
Author: Prem Nair <prem@exafunction.com>
Date:   Sat Jan 28 03:03:06 2023 -0800

    Project import generated by Copybara. (#44)

    GitOrigin-RevId: e8e2a42af376bad1c816cf9bc7f62596b2d230b6

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit cc08cccd9615d2c95daf75bc2e64a3ca320f1a75
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jan 24 18:45:06 2023 -0800

    Project import generated by Copybara. (#40)

    GitOrigin-RevId: 813a7a443476e8fbea7bc3bdcd15d0653bbcd95c

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit e2bcd7c38f2a355d5030c09dd1e2592ba9902813
Author: TheLeoP <53507599+TheLeoP@users.noreply.github.com>
Date:   Tue Jan 24 14:18:05 2023 -0500

    Fix: use powershell to exctract .gzip executable on windows (#39)

    * Fix: use powershell to exctract .gzip executable on windows

    * Fix: calling curl unconditionally

    * Fixes

    Co-authored-by: Prem Nair <prem.q.nair@gmail.com>

commit 5248ecedef1b834605dadde9c3819e80c633fb65
Author: Prem Nair <prem@exafunction.com>
Date:   Mon Jan 23 11:51:50 2023 -0800

    Project import generated by Copybara. (#37)

    GitOrigin-RevId: 4859fb42d6ecc1aa89198c02a1a8046fb2af00d3

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit af998e1c97dbd6c43587ecb2c16ed43dbdac39dc
Author: Sean Sullivan <22581534+sullivan-sean@users.noreply.github.com>
Date:   Mon Jan 23 10:21:17 2023 -0800

    Update README.md

    Co-authored-by: Prem Nair <prem@exafunction.com>

commit 09918f0f5d139e1b31791cdd244edc31239d68ab
Author: Sean Sullivan <ssullivan61198@gmail.com>
Date:   Sun Jan 22 23:19:41 2023 -0800

    add better keybinding configuration/documentation

commit 1ad3fb6f9ec6c077fdc5224ecca2964985be48c7
Author: Prem Nair <prem@exafunction.com>
Date:   Sun Jan 22 23:34:27 2023 -0800

    Project import generated by Copybara. (#34)

    GitOrigin-RevId: c545ff5822e46131599b661ab213e4b4b7094270

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 27305a39ac5f8c573a4290ac5cea369233c1bee7
Author: AnthonyUtt <anthony@anthonyutt.dev>
Date:   Thu Jan 19 12:53:36 2023 -0500

    add flag for disabling default tab mapping

commit 776e4b538270d9a52f6f67825f374e9b33f0520e
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Feb 1 15:04:26 2024 -0800

    Project import generated by Copybara. (#312)

    GitOrigin-RevId: 8708c2828657463e742a3e75b673d403bcaf88d5

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 689134b29597f3f8dafe6e7756787898329ed0b5
Author: Manuel <dev+git@manuelsbrain.de>
Date:   Sat Jan 27 02:58:22 2024 +0100

    fix: typo in code block language (#309)

commit 69d762614ce0f1e25817b157370f71b6fe37425a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Jan 26 19:46:22 2024 +0000

    Revert "Project import generated by Copybara. (#307)"

    This reverts commit 36721243b0e937217bd843fa21c5b285a7e68ae2.

commit d7f83f5efeec039c5e16e570242c7b98e8e8a8b2
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jan 25 22:39:39 2024 -0800

    Project import generated by Copybara. (#307)

    GitOrigin-RevId: 8b5d31c67d37820bd7810b7cc4f348d3daa6a717

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 1fc2fce4f23287d0acfe06f2e9d8e0adccf42796
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Jan 17 19:43:42 2024 -0700

    Bring to head of internal repo (#301)

    * Project import generated by Copybara.

    GitOrigin-RevId: 79a4e4242525a4fd0d569ff7fd08a6b501387742

    * Update server.vim

    ---------

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 9b88a044011dfe2e691bf04df11b639e11c99eb8
Author: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
Date:   Wed Jan 3 20:13:03 2024 +0100

    Feat: Add codeium_bin option (#292)

commit 947fad08053a1330de1b3efb4687a85e4bcfdc37
Author: Jakub F. Bortlík <jakub.bortlik@proton.me>
Date:   Tue Dec 26 19:47:50 2023 +0100

    Feat: Add command for toggling Codeium (#283)

    * Feat: Add command for toggling Codeium

    The newly added CodeiumToggle command makes it possible to achieve the same effects as the
    CodeiumEnable and CodeiumDisable commands but with a single keymap.

    * Feat: Add Toggle subcommand to the Codeium command

    ---------

    Co-authored-by: Jakub Bortlík <jakub.bortlik@phonexia.com>

commit c1e87abeec5e00e866787c7194b9ed6b7abfba9f
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Dec 21 16:43:12 2023 -0800

    Project import generated by Copybara. (#288)

    GitOrigin-RevId: 29694b0a3b252c1189f9fe370a5c1de308776562

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 97565ebe833627f3599fb3d9cc4a3ee592b63419
Author: Anton Filippov <flppv8@gmail.com>
Date:   Tue Dec 19 04:33:28 2023 +0700

    Update keymap options README.md (#285)

    This change will hide cmdline output which triggers flickers for people using noice.nvim

commit 11d0188697e6a87b0487a168251523605e032db1
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Dec 8 12:52:40 2023 -0800

    Bring to head of internal repo (#276)

    * Project import generated by Copybara.

    GitOrigin-RevId: 07f8ec01ef5739814985b479b54ed06835e1a3b9

    * Update codeium.vim

    ---------

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 68782e47b7855df8ec70af127a1f23c40ae991df
Author: Arne Van Maele <93863978+arnevm123@users.noreply.github.com>
Date:   Mon Dec 4 20:23:11 2023 +0100

    fix: #273: accepting suggestion overrides yank register (#274)

    Co-authored-by: Arne Van Maele <avm@unmatched.eu>

commit c41dc33a1ee340e9a4a7d2437ee043e5c9d7ef47
Author: Prem Nair <prem@exafunction.com>
Date:   Mon Nov 27 15:21:31 2023 -0800

    Project import generated by Copybara. (#266)

    GitOrigin-RevId: c8bbe91c7e94c7736160374caf6612ee430080b5

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit c3cb66d0df2aa5faa0ca982f3a302854d3f614ca
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Nov 8 15:53:07 2023 -0800

    Project import generated by Copybara. (#262)

    GitOrigin-RevId: 64d42d82d0a915203d00e0053e6c4214c2ce90cd

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit d2bc32258420823ab7da6ccf9c6ff17d436828e3
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Oct 27 15:32:02 2023 -0700

    Project import generated by Copybara. (#259)

    GitOrigin-RevId: ecb41b41287857eff5ed2b8aa6d7881a89029f24

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit af4694cd1f2703fa685aad78a3f929da1e2b2719
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Oct 19 17:56:53 2023 -0700

    Project import generated by Copybara. (#257)

    GitOrigin-RevId: 3f31b92fe2d53b05465e126a339d8fb7a6a3f4b5

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 06d7738e05bae470bf76ed5c8cd083fd8e7fb15a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Oct 18 20:27:39 2023 -0700

    Project import generated by Copybara. (#256)

    GitOrigin-RevId: fd3329c8d3713ec772aef8dd1648b7cbb63e1480

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 6d71eba933a775f7301f43026fcb69ac2d724e64
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Oct 13 18:00:53 2023 -0700

    Undo README revert (#251)

commit a96cd8eaa92fb4c1bb97d5186dbf8c23918efbb1
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Oct 12 20:30:55 2023 -0700

    Project import generated by Copybara. (#250)

    GitOrigin-RevId: 84721408455bc3335449c351005778c3b177bfcc

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 8ea14b9122d72138b109ca3eff5866f558ca2768
Author: Ingo Meyer <1449087+IngoMeyer441@users.noreply.github.com>
Date:   Wed Oct 11 19:33:26 2023 +0200

    Describe vim-airline support in README.md (#247)

    Vim-airline has out-of-the-box support for Codeium, so no extra configuration is needed.

commit 3e6c7a26a8478ccafecd7d9f197640b2f0b63a2e
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Oct 10 17:01:52 2023 -0700

    Project import generated by Copybara. (#246)

    GitOrigin-RevId: 703705d0b32fc18810ff59214ba1b5ef3d1e3f5d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 0d84ab496d776e22b7f36c5340382e6b4a695f9e
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Oct 9 14:24:47 2023 -0700

    Project import generated by Copybara. (#245)

    GitOrigin-RevId: d595315dcb57bc41cb1b45907c808ee70244c2ea

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bc685752ed47e4848918dba0acc5d27d2b0938ae
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Thu Oct 5 11:13:31 2023 -0700

    Add simple icons asset (#241)

    * Add asset

    * Minify and optimize

commit 48b194f83901b4aaa632bdbc307c47dd7925f6d8
Author: cprn <cprn@users.noreply.github.com>
Date:   Thu Oct 5 20:09:55 2023 +0200

    error handling for missing `gzip` (#240)

commit c248ee5ac1eda8226a035cd8b64cd7615560f21f
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Oct 2 18:18:13 2023 -0700

    Use public worker (#239)

commit 70a4f1ba0d4496e3e68f601251ad5c57bb6fbca8
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Oct 2 18:14:49 2023 -0700

    Update server.vim (#238)

commit 800d6bb57087de48d2167cf3132b1c9011fa5e12
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Tue Sep 26 15:17:36 2023 -0700

    Simple b&w logo (#234)

commit 759120426b8bdc73cbb64d5293c04a22ca8464ac
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Tue Sep 26 14:57:35 2023 -0700

    Add square codeium asset (#233)

commit 4d1ff2239d760c6d5b8d5aa1ed8aa0c95909d487
Author: Raidou <weirongxu.raidou@gmail.com>
Date:   Wed Sep 27 02:22:31 2023 +0800

    fix: Fix completion eating characters when using multi-byte character (#232)

commit fde2fbbe067795a279799716c647f5ac5915ba15
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Sep 21 11:59:04 2023 -0700

    Project import generated by Copybara. (#229)

    GitOrigin-RevId: 970f82797d30f841f42ce5b0bba091627361c495

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f8d35affbaa72a896bde13b162b7e3af2ff64c9f
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Wed Sep 20 23:57:10 2023 -0700

    Update README.md (#228)

commit a97fc585f7a0d8659167d8075adc55e7a8a5017d
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Wed Sep 20 12:17:09 2023 -0700

    Add `built with Codeium` badge to readme (#227)

commit 394850108a4862f5fc8d0e261adc613df3d2a366
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Sep 15 16:24:59 2023 -0700

    Project import generated by Copybara. (#224)

    GitOrigin-RevId: be3c8755a3cfb564d2cdca46c8c2c6bcf4625919

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit d4dab9d1d57bd884eadb791f76f94b916f92083f
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Sep 11 16:26:37 2023 -0700

    Project import generated by Copybara. (#221)

    GitOrigin-RevId: 040be74004fd62dc3cff56b06252c8394415dc8d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit d84bda48a388eb8df55a2767d857de8d85796cc0
Author: Nick Jiang <njiang747@gmail.com>
Date:   Tue Sep 5 19:29:21 2023 -0700

    Project import generated by Copybara. (#218)

    GitOrigin-RevId: bad36281674ad2498039da69be67954079dde3bd

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit e4e147c4393eb8c7c43425043f77b9e64b37617e
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Aug 29 17:25:32 2023 -0700

    Project import generated by Copybara. (#216)

    GitOrigin-RevId: c5b042b112683153ec80eebd322b9803dce6c6aa

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 6f2e6eeabf952e9f41348c1be8d60d49d7a7c2d6
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 28 20:19:22 2023 -0700

    Project import generated by Copybara. (#214)

    GitOrigin-RevId: 4c847c085773836ab6a504d413a86bb9dd03b95a

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 4e64bb7a73fe800bffe07b865adcb755fa4cdd43
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Aug 24 19:20:54 2023 -0700

    Project import generated by Copybara. (#210)

    GitOrigin-RevId: ce0ab9b479fe329e7781f35d19f0f7841057daa4

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 573f91e944ce2f7e4212af08867f49c5e119cb7d
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Aug 23 12:25:04 2023 -0700

    Project import generated by Copybara. (#209)

    GitOrigin-RevId: afaee99af9700e0237b6327d363cebfb903b18f2

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 1832caf0f48eb6c2d3f2225f4a628cbf21bdbe96
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 21 17:46:48 2023 -0700

    Project import generated by Copybara. (#207)

    GitOrigin-RevId: a2b18a1b8b609a5e70a1e69eb0114e34617208d0

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 9874d3e2d0612b1af9912865a08de3ccdd00f211
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 21 15:17:06 2023 -0700

    Project import generated by Copybara. (#206)

    GitOrigin-RevId: 71c7c0f034841677fe94b76b9b687e6e2439805e

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 47e08605aaf635aa7f6608483fc4265f43cf8587
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 21 13:23:06 2023 -0700

    Project import generated by Copybara. (#205)

    GitOrigin-RevId: 8d5b6de767c1649a78d40738c6671f4e1db64ba4

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 325e214b06d07fe1c364feba0c37122d29211497
Author: Nick Jiang <njiang747@gmail.com>
Date:   Fri Aug 18 11:47:50 2023 -0700

    Project import generated by Copybara. (#204)

    GitOrigin-RevId: ef3fd16f4147192500549f3f3d03245f39cdb219

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bef44c52f2c69a107ddd9420bbb3aa3bb3ba20ed
Author: RotrixX <ncusnir43@gmail.com>
Date:   Wed Aug 16 20:12:51 2023 +0200

    feat: add lazy installation option (#203)

commit 2318369ec32801635c2f40eb3e2ae273837a1b03
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Aug 3 20:20:35 2023 -0700

    Project import generated by Copybara. (#198)

    GitOrigin-RevId: dfc7cc4afed98dc4bc73b479f91437691229d379

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f70222fc672b71c46b444dc0ed2a6aecfac3a3bc
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Aug 1 16:18:25 2023 -0700

    Project import generated by Copybara. (#197)

    GitOrigin-RevId: e17a58f7dc56ab05219704be040171bfb8aefa9a

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 2121a10668238a1be657061fbeda78541982e80a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jul 27 20:26:15 2023 -0700

    Project import generated by Copybara. (#194)

    GitOrigin-RevId: fc12423dc5d722756229443a7e921ee252b4358b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit d52f14184a8c35f6aced20dd1ced3bc780fa1ce3
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Sun Jul 23 19:16:34 2023 -0700

    Project import generated by Copybara. (#192)

    GitOrigin-RevId: f77e4ce3bb04b5124e9168c95508c6029217981d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 268ee7771d47c157cce386749b2a54d37021a614
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Jul 18 14:47:57 2023 -0700

    Project import generated by Copybara. (#189)

    GitOrigin-RevId: da66d52916816f71f25296ee57784c1f93b1a190

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 70776eb79b1398f6f4eb6694d05a82f801a0c17d
Author: BB Chung <afafaf4@gmail.com>
Date:   Tue Jul 18 12:19:04 2023 +0800

    fix #146 (#188)

    * fix #146

    * Update autoload/codeium.vim

    ---------

    Co-authored-by: Prem Nair <prem.q.nair@gmail.com>

commit 374a831c61f31cbce32c8a7d581653b1dfabd26a
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Jul 12 20:03:25 2023 -0400

    Project import generated by Copybara. (#186)

    GitOrigin-RevId: 6c2f5348dfdfd30ec308ff0d2cc596b53a4172cb

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 6be11ae73afb1bd917b8047f1adb720a9256a900
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Jul 10 20:53:56 2023 -0700

    Project import generated by Copybara. (#184)

    GitOrigin-RevId: d8a23153e36c19422359bedb7b6d370585fb5284

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 1fe65f4a7aca43791a6242c7e030ca54a3e1d0b8
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Jul 10 16:28:56 2023 -0700

    Project import generated by Copybara. (#183)

    GitOrigin-RevId: 240edaa0f2f28e877a0b12779836b9f6142c8a88

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit b4d5150f4cfc6569dba5c02ffb98b8137be1050f
Author: toofar <toofar@spalge.com>
Date:   Sun Jul 9 10:40:40 2023 +1200

    silence non-interactive system() calls (#181)

    Control characters can leak onto the screen in some configurations
    (observed with vim on linux with some terminals). `:he system` says to
    prepend calls with `silent` to prevent that.

    Fixes: #83
    Fixes: #126

commit 899f8467d1d7e0088d738e45e155127e27f251a2
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Jul 5 23:46:52 2023 -0400

    Project import generated by Copybara. (#180)

    GitOrigin-RevId: 78867fa034464755f4fc95da7d3b730adb1241ef

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 59afe2a6a413da68c8b4534f12a8d76692be2351
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Jul 5 16:27:21 2023 -0400

    Bring to head of internal repo (#179)

    * Project import generated by Copybara.

    GitOrigin-RevId: 483bb06b900bc52f8e093cfcfa473faed3cb6cc1

    * Undo removal

    ---------

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 775a3bd3040c5cdfe873882009f942d9c54c2510
Author: Igor <20246185+igor-starostenko@users.noreply.github.com>
Date:   Mon Jul 3 14:09:01 2023 -0700

    Added branch main for vim plug installation instructions (#178)

commit 0b9b4d7631ee889bacad086abbbb2f31f04c51d5
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Jun 30 18:18:58 2023 -0700

    Project import generated by Copybara. (#174)

    GitOrigin-RevId: 174b2d15ccc4b73b026adf8ce4bd3e4bab9ee16b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit b6c17bf6d17b9b0b50baa6759988ed845e7fc891
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jun 29 21:26:52 2023 -0700

    Project import generated by Copybara. (#172)

    GitOrigin-RevId: 2e9c0a84e8d9d6293cc63d0511bd48612e837fbb

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f7135333445c2def759beda3dd6ce74f4347ca32
Author: Nick Jiang <njiang747@gmail.com>
Date:   Thu Jun 29 00:17:32 2023 -0400

    Project import generated by Copybara. (#171)

    GitOrigin-RevId: bf5338abb692919b8084400b69d998fa3e657230

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 454291b0f4923d21cced4759e47ea6cd26cd7dad
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Jun 28 01:08:33 2023 -0700

    Project import generated by Copybara. (#169)

    GitOrigin-RevId: 0254f337da11c591aebe10a3fe88ce8876b29be5

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 4aae2a4eb8c5d0161d713c77695c9d103cb9ebfa
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Jun 27 22:13:26 2023 -0700

    Project import generated by Copybara. (#167)

    GitOrigin-RevId: abbd4f8b98305ff9ad6808c438abe19c41352a88

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 01bec9a9047cc84fc911dc7b1875706275eb5f4d
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jun 27 00:16:02 2023 -0700

    Project import generated by Copybara. (#166)

    GitOrigin-RevId: f8b0ef3c2ff5e7295d929bb9e8e19d90ce843135

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit a56d214a3263168601a14dc251551dd635e38aa3
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Sun Jun 25 16:45:25 2023 -0700

    Project import generated by Copybara. (#165)

    GitOrigin-RevId: f697d2a12d9286f75c0cd44c9ee232542c60c7a4

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 137eaa8b4d6c677f656235c39db707ee73e0c9f0
Author: Tim Viola <psalm842@gmail.com>
Date:   Thu Jun 22 23:59:42 2023 -0400

    Improve behavior of Codeium Auth (#161)

    Codeium Auth will now prompt the user to ask if they want to run curl with the "--ssl-no-revoke" option if a revocation error is detected during authorization and they are using a windows system.

commit 5cc2c8a6081f1a7b6e03803ff255bdb3d5d286c6
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Jun 21 14:24:49 2023 -0700

    Project import generated by Copybara. (#162)

    GitOrigin-RevId: 8a390d328578dee5561445d2a0c59d593fa4f230

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit c443ba83c3add232ef49cd1d10653c82bc5ab1b9
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jun 20 11:30:00 2023 -0700

    Project import generated by Copybara. (#158)

    GitOrigin-RevId: 4db09f8757a9770024da5df1d610f3e3b0141015

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit d0b3999c4cc236e7dee276998ee3fc281baf1938
Author: Nick Jiang <njiang747@gmail.com>
Date:   Thu Jun 15 17:36:30 2023 -0400

    Project import generated by Copybara. (#155)

    GitOrigin-RevId: 32637667637bdd5f42e09d44aa74cb12b630b392

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 03d9a4da30f6171175a0e801a5b66c3271975ea5
Author: Prem Nair <prem@exafunction.com>
Date:   Mon Jun 12 12:03:00 2023 -0700

    Project import generated by Copybara. (#154)

    GitOrigin-RevId: c39e95aeebaf6a156a5925ebe68a83e82ed31f94

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 472c1fb5808c7f83d94ae4f74aefe64a1339492d
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Jun 12 11:11:40 2023 -0700

    Project import generated by Copybara. (#153)

    GitOrigin-RevId: 8fb0f553a54374a08a96ecd12b6ff39de81c53ab

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 56e3b2e7569c590a51d02ddfd1ba8eb7f7efdb9a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jun 8 22:19:12 2023 -0700

    Project import generated by Copybara. (#152)

    GitOrigin-RevId: 4844b908248c1f5a5cee851347b7f083b7ae83c5

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 76e234dd5ddea3344ba3e655dd42ecb308ffcbec
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jun 1 15:24:42 2023 -1000

    Project import generated by Copybara. (#147)

    GitOrigin-RevId: bac812133dd66803b10e6d95f4d7e61700f43d41

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 5648c3f0481a8c3a60a5d3c81f811e724c629a86
Author: Cy-r0 <cirocursio@live.it>
Date:   Fri May 19 03:38:29 2023 +0200

    Hide autosuggestions when user is typing in insert mode (#136)

    Fixes issue #85

commit 68048778078e94678ff7c8f9fd4978d8d5ef5ec9
Author: Shougo <Shougo.Matsu@gmail.com>
Date:   Thu May 18 03:17:32 2023 +0900

    Add g:codeium_tab_fallback documentation (#143)

commit 9f1a4a27e15ff1c8be667d74d392e0aa9d634376
Author: Shougo <Shougo.Matsu@gmail.com>
Date:   Thu May 18 03:16:44 2023 +0900

    Add g:codeium_render (#137)

commit 1595d76f16e80d630e014cdbb79707e4d12cb018
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon May 15 19:20:26 2023 -0700

    Project import generated by Copybara. (#141)

    GitOrigin-RevId: 75d254761a76e3d2576c07698e0c97697785ead7

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit ae7a1b27c4997429d918674f5e8f85d2820b0641
Author: Cy-r0 <cirocursio@live.it>
Date:   Sat May 13 03:25:58 2023 +0200

    Document g:codeium_idle_delay (#138)

commit 6556bb0248f88f5bf216130ee9b613fbcda177a4
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue May 9 12:52:40 2023 -0700

    Project import generated by Copybara. (#133)

    GitOrigin-RevId: f8c43ab04fb5a06f2ea78124ad84061140d9989c

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit c435c7caf77f61188a577a64a772fc1fe623ca36
Author: Prem Nair <prem@exafunction.com>
Date:   Tue May 9 12:48:03 2023 -0700

    Project import generated by Copybara. (#132)

    GitOrigin-RevId: 01b6fa2667f37efa49fb042c95639e3a2fa1b8a1

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 306676980b65d29781d9f46d6b95e067d8e4ea43
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon May 8 21:15:59 2023 -0700

    Project import generated by Copybara. (#131)

    GitOrigin-RevId: 25dacd00449ae99d71db5a92a0580a6a3d83256c

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit e451271cdefc3bdd08859ffff34ab957f0968d87
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon May 8 20:52:03 2023 -0700

    Project import generated by Copybara. (#130)

    GitOrigin-RevId: c86f5b9a7325c7bbd495cc1ad8a12524cad0b4ca

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 542eed2c31f04ce3cc43db6d6e07ee51b864dacd
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue May 9 00:57:40 2023 +0000

    Add version tag workflow

commit ef9fde5f26ede529d96f7d3accdabef9865ff963
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri May 5 18:02:57 2023 -0700

    Project import generated by Copybara. (#128)

    GitOrigin-RevId: 8a863af5df547904466964a1182fb15c6f8b7298

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bd2f5e43161be4490c650f4050e8a982ae92dc8c
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Apr 28 11:09:04 2023 -0700

    Project import generated by Copybara. (#123)

    GitOrigin-RevId: f5c8e5e371939305787ab7dc7d05ceca4ffd0faa

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 6dcb15cbe0c990b8cd6e2c4fd0eeac21113a878a
Author: sigmaSd <bedisnbiba@gmail.com>
Date:   Mon Apr 24 23:39:11 2023 +0100

    warn the user if the api key is not set yet (#119)

    * warn the user if the api key is not set yet

    * fix the command name

    * Update autoload/codeium/command.vim

    Co-authored-by: Rahul Sridhar <sridhar.rahul@gmail.com>

    ---------

    Co-authored-by: Rahul Sridhar <sridhar.rahul@gmail.com>

commit 6a2d9987a2014daa29d55c36dd2acbd7001c82d2
Author: Xavier Mitault <xavier.mitault@epitech.eu>
Date:   Mon Apr 17 23:53:25 2023 +0200

    Use XDG_DATA_HOME if set, else let $HOME/.codeium (#116)

    * Use XDG_DATA_HOME if set, else let $HOME/.codeium

    Use XdgConfigDir anywhere the config.json was needed

    * Rename to codeium#command#HomeDir

    Remove old commented function

    * Update autoload/codeium/command.vim

    * Update autoload/codeium/command.vim

    * Update autoload/codeium/command.vim

    ---------

    Co-authored-by: Rahul Sridhar <sridhar.rahul@gmail.com>

commit 7de4657dcfb11c5fffcf87cc0a49bf8eb21bd253
Author: sigmaSd <bedisnbiba@gmail.com>
Date:   Mon Apr 17 22:43:34 2023 +0100

    don't start language server if codeium is disabled (#114)

    * don't start language server if codeium is disabled

    * start the server from `Codeium *` commands as well

    * better looking code

    * fmt

    * fix codeium enabled check

    * restore check

commit 1595741dd0ea669399a60c61d9e784a88ba78493
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Apr 17 14:43:11 2023 -0700

    Project import generated by Copybara. (#117)

    GitOrigin-RevId: 888d3d4e361b960f4ca2d7fd8ba0b9842374a365

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 826d0932b5a27ffb5541aa937bf53cbcfce1755b
Author: sigmaSd <bedisnbiba@gmail.com>
Date:   Wed Apr 12 20:39:49 2023 +0100

    handle variable not existing more gracefully (#112)

commit 5596b5c1586384ae0002c8799b2616ab7717279b
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Apr 12 12:39:36 2023 -0700

    Project import generated by Copybara. (#113)

    GitOrigin-RevId: 78e91e0e8baf75b82084e06ccb68ec4d34cb943f

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit fe3bf413957b3f4ded5e9ac4149db091ac888fd6
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Apr 4 18:48:44 2023 -0700

    Project import generated by Copybara. (#108)

    GitOrigin-RevId: 04a4e037d943d64df133da90430fc3114e9e78ce

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 24d171beb242e81cc1d6e1bb582e631e5c5df17a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Mar 31 16:05:40 2023 -0700

    Project import generated by Copybara. (#105)

    GitOrigin-RevId: 4ab71248a6c943067683395710a823a67c34de8b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 81d7a3576216a24b85c2dfa9b9fe4d7e659861af
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Mar 27 16:59:29 2023 -0700

    Project import generated by Copybara. (#102)

    GitOrigin-RevId: f67347cc213b290715507ac46c18d9081f00083e

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 1647d65170cb5d0fcb257fd373a60bbeaa5b8cdf
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Mar 21 12:32:50 2023 -0700

    Project import generated by Copybara. (#99)

    GitOrigin-RevId: 0b79c48149bb83a6fee9ff31cabb073f697ad43b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bfdf6f9c8a5671d38266fdcebdaa874d0862dd8a
Author: Krzysztof Lewandowski <krz.lewandowski@gmail.com>
Date:   Fri Mar 17 22:33:09 2023 +0100

    Add other_documents support (#97)

    * Add other_documents support.

    Content of all loaded buffers will be added to completion request.

    * Add relative and absolute paths for document and other_documents

commit 7543946d8823279400ec823ead164c61de0848e8
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Mar 17 14:32:31 2023 -0700

    Project import generated by Copybara. (#98)

    GitOrigin-RevId: 1c11f4002e642bae71aada763e358e31d82f85a3

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit b8c1f5b2d34897391507c73a4f96b6fcb9ea78b7
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Mar 16 13:28:57 2023 -0700

    Project import generated by Copybara. (#96)

    GitOrigin-RevId: f26ec6abba54ef8e239cd2af4ea6f02b0a349297

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 3f55053b3b0903acba8db7b626701ec068db7fc7
Author: Pinaki Sekhar Gupta <appugupta007@gmail.com>
Date:   Fri Mar 17 00:47:17 2023 +0530

    Enable/Disable Codeium on the fly. Set Manual/Auto mode as required. Can be controlled from the GUI. (#95)

commit 000b74c722570437853bdf43a445fe3993779fb9
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Mar 15 13:23:16 2023 -0700

    Project import generated by Copybara. (#94)

    GitOrigin-RevId: ae731acc61f4250f6c9c535d786e666b3bf05348

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 250855cbfd56ceda95010eae9e74d26e8bdab261
Author: Steven Madere <smadere@glgroup.com>
Date:   Wed Mar 15 13:46:25 2023 -0500

    Added codeium#CycleOrComplete() and mapped M-] to it (#91)

commit bb6353a21c5f543c89fed5b387d09728f5e6692f
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Mar 15 11:30:30 2023 -0700

    Project import generated by Copybara. (#93)

    GitOrigin-RevId: 93cc7f28e210afef794af1cff7cd3b00d3801f9a

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit a60fc2b9d3d417d7ca4f267d69d21e3b47b81bb7
Author: Luis <53346834+luismeyer95@users.noreply.github.com>
Date:   Wed Mar 15 18:57:42 2023 +0100

    Fix #84: completion sometimes eating characters (#89)

    * Fix issue with completion eating characters

    * Move the switch to insertion mode in the delete command

    * Apply suggestions from code review

    Co-authored-by: Rahul Sridhar <sridhar.rahul@gmail.com>

    ---------

    Co-authored-by: Rahul Sridhar <sridhar.rahul@gmail.com>

commit 6a1c688c264db9474b728e1101f79b5747adfc57
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Mar 13 19:31:08 2023 -0700

    Project import generated by Copybara. (#92)

    GitOrigin-RevId: 4f10b6dc1f581f2d8f9ea9b0b4a42c7567d47c55

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit acf82249710666f91c1d600c34c00c045f2e57ca
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 24 14:46:46 2023 -0800

    Project import generated by Copybara. (#81)

    GitOrigin-RevId: b4d7d066e79c72c19373fe4bd580eb74d5ce4d7d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 4fb24ecc0fbaff479d5249db05339fdaec4ba750
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 17 17:54:07 2023 -0800

    Project import generated by Copybara. (#78)

    GitOrigin-RevId: f400b5e0b2f864482db05ca353701c1678e765f2

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 90526bd1af4b7c525f7729bab97256e215bcb6d7
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 17 14:42:56 2023 -0800

    Project import generated by Copybara. (#77)

    GitOrigin-RevId: 76b2d3f34f2ce4e8cb0a51fb6798056ea6e36915

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit d3726bb975e6c14f8d110cf139db838af5f834a1
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 17 11:17:44 2023 -0800

    Project import generated by Copybara. (#76)

    GitOrigin-RevId: 0ab711e2db04ea61d87d85ab0091c8d785f8c9d6

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 3da65232c8c5f88f0c9c60157165135f134b5f5c
Author: Jaeho Choi <choijaeho@gmail.com>
Date:   Mon Feb 13 13:06:10 2023 +0900

    fix: Codeium Disable breaks Tab key #72 (#73)

commit 6de251c690ffd0aaad2790d153e5a532ae34464f
Author: Prem Nair <prem@exafunction.com>
Date:   Sun Feb 12 20:04:59 2023 -0800

    Project import generated by Copybara. (#74)

    GitOrigin-RevId: 257cf5336d5387c84a99c49efbca27bc1e0a5864

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 252178e24439e2ad7bb439b9314b634a2fa0069a
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Feb 9 13:47:32 2023 -0800

    Update badge

commit 8971ae8d9e4c4d7fca7de24026f85e7548a0c273
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Feb 9 11:39:39 2023 -0800

    Project import generated by Copybara. (#69)

    GitOrigin-RevId: 4525f67fbf6c4a631029e996dfe490d880e8e231

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 0c8be3840d04d01b4812cc0e3eba09d8e4be4092
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Feb 9 08:02:25 2023 -0800

    Project import generated by Copybara. (#68)

    GitOrigin-RevId: 9f549c82f5aaa25c2877fdb0eae17005d2f3a3ed

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit a9cea0f60725b6c4caaa36c2b46715c81be5ea1c
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Feb 8 19:41:52 2023 -0800

    Project import generated by Copybara. (#67)

    GitOrigin-RevId: b7ac23f5840bcbb55edcf6c78bcc8a6f896552d4

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit ebb7c1cf03fd3a7f9c2b8894f7c0c5897118f91e
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Feb 8 13:51:17 2023 -0800

    Project import generated by Copybara. (#65)

    GitOrigin-RevId: 72f0aef8ccde61f1990f83bf5e2cc4e9204ef3d3

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 2993f2380be05e67ba412397e3397eaf1d3fec38
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Feb 8 13:10:32 2023 -0800

    Project import generated by Copybara. (#64)

    GitOrigin-RevId: 5e6b38f419193f918f3ad671d2df0872a375ba7e

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 64faf4c0b96cfd564455b5d2b5d324bc3938b511
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Feb 8 11:45:08 2023 -0800

    Project import generated by Copybara. (#63)

    GitOrigin-RevId: 45a561afccf8f70f107817e3e356afa463fb85fc

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 689079ec1466d9cecabef9ae47d6de3586d7054e
Author: Nick Jiang <njiang747@gmail.com>
Date:   Fri Feb 3 11:27:05 2023 -0800

    Project import generated by Copybara. (#59)

    GitOrigin-RevId: 668b8d39b4cf2556900a5ac0bd062b54dccc606a

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f509990754ff2a1be6d43d7b76cf430a23bc9b3f
Author: Krzysztof Lewandowski <krz.lewandowski@gmail.com>
Date:   Thu Feb 2 15:06:52 2023 +0100

    Add statusline support (#46)

    * Remove duplicated suggestions

    * Add statusline support

    * Revert "Remove duplicated suggestions"

    This reverts commit a33c6e284b321e7a08d67c35021d8041f875c0ff.

    * Add Codeium logo to statusline examples

commit 82c25b449f78d5e0dc86269255ba6d81b36a0cc0
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Feb 1 12:19:28 2023 -0800

    Project import generated by Copybara. (#57)

    GitOrigin-RevId: b9427e0cd5dae1ff61353d1d3c5a44c35666270f

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 45c5849d2709ca89ad4ce84e7fe2475a05e11284
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jan 31 22:34:16 2023 -0800

    Project import generated by Copybara. (#50)

    GitOrigin-RevId: 364f8c24e54cfb9a1b711880457c9d07b9e7423f

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 7312c922ff0cc5c28c504da2da874b3fca12fc36
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jan 31 18:31:29 2023 -0800

    Project import generated by Copybara. (#49)

    GitOrigin-RevId: d11b4e0ae6df655a544d5f93669f878ae63e36bc

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 19a9e93d3bf8fa2b25b7852b8b5e32c5ada319db
Author: Prem Nair <prem@exafunction.com>
Date:   Sat Jan 28 03:03:06 2023 -0800

    Project import generated by Copybara. (#44)

    GitOrigin-RevId: e8e2a42af376bad1c816cf9bc7f62596b2d230b6

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 3c47a77ffbf0036384a51bcc74338bee5f6e1804
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jan 24 18:45:06 2023 -0800

    Project import generated by Copybara. (#40)

    GitOrigin-RevId: 813a7a443476e8fbea7bc3bdcd15d0653bbcd95c

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 12399f7d9a11b9ee4ffe88eab140cfc5f61e12a9
Author: TheLeoP <53507599+TheLeoP@users.noreply.github.com>
Date:   Tue Jan 24 14:18:05 2023 -0500

    Fix: use powershell to exctract .gzip executable on windows (#39)

    * Fix: use powershell to exctract .gzip executable on windows

    * Fix: calling curl unconditionally

    * Fixes

    Co-authored-by: Prem Nair <prem.q.nair@gmail.com>

commit a27272b11b99f0e5e5e5549f6e5a5c0d5546de70
Author: Christian Drumm <ceedee666@users.noreply.github.com>
Date:   Mon Jan 23 23:00:03 2023 +0100

    Keep <Plug> mappings (#38)

commit 54e9836c64f4289b149f4f330994dfaf183c0fbe
Author: Prem Nair <prem@exafunction.com>
Date:   Mon Jan 23 11:51:50 2023 -0800

    Project import generated by Copybara. (#37)

    GitOrigin-RevId: 4859fb42d6ecc1aa89198c02a1a8046fb2af00d3

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit a0af98a5da1947adc76eb4230855b464130ea0de
Author: luis <eugenio2305@hotmail.com>
Date:   Mon Jan 23 11:02:48 2023 -0500

    Fix: handle Windows better, fixes #31

commit 2258880c34b36e9cc5152d6f6a0f95c15aaf6ba1
Author: Sean Sullivan <22581534+sullivan-sean@users.noreply.github.com>
Date:   Mon Jan 23 10:21:17 2023 -0800

    Update README.md

    Co-authored-by: Prem Nair <prem@exafunction.com>

commit 2ac25df5909b2cdee57bd66ed2ff0a95cdb0d5e7
Author: Sean Sullivan <ssullivan61198@gmail.com>
Date:   Sun Jan 22 23:19:41 2023 -0800

    add better keybinding configuration/documentation

commit e43bfa4bf2c34a7bac9f2c1eddea9de8c19dc298
Author: Prem Nair <prem@exafunction.com>
Date:   Sun Jan 22 23:34:27 2023 -0800

    Project import generated by Copybara. (#34)

    GitOrigin-RevId: c545ff5822e46131599b661ab213e4b4b7094270

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 07e54771223badeb44de103bb02ea2bae77c5f6e
Author: AnthonyUtt <anthony@anthonyutt.dev>
Date:   Sun Jan 22 16:12:23 2023 -0500

    update default value for g:codeium_no_map_tab

commit 6858dfd76a3aea72833a2154f872220de20a3007
Author: AnthonyUtt <anthony@anthonyutt.dev>
Date:   Thu Jan 19 12:53:36 2023 -0500

    add flag for disabling default tab mapping

commit 7d37efc60169b8eb7f63123dc323bbf070f0c5a4
Author: Prem Nair <prem@exafunction.com>
Date:   Sat Jan 21 00:41:11 2023 -0800

    Project import generated by Copybara. (#26)

    GitOrigin-RevId: cc41c56997e728b550db6141efcb78f10a97834e

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 8a5129c53183d81746a08d830033f9cb99ade0aa
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Jan 20 21:07:20 2023 -0800

    Fix Twitter icon

commit 9cae088231f63ca21ffcdf4806a240726b52484d
Author: Copybara Bot <copybara@exafunction.com>
Date:   Thu Jan 19 22:36:47 2023 -0800

    Project import generated by Copybara.

    GitOrigin-RevId: 7549d0a026e29b30ed0a5264b96917bb6ce03be2

commit 947020ff3e13bb566f539a09dfc3195915402a2a
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Jan 19 17:47:22 2023 -0800

    Project import generated by Copybara. (#22)

    GitOrigin-RevId: 4906bf6d1b045810ea529da268f1ab321b174fc9

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit c1143d1ab1e95f2a2caf1a469b671f9ae9773a92
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Jan 19 17:41:25 2023 -0800

    Bring to head of internal repo (#21)

    * Project import generated by Copybara.

    GitOrigin-RevId: eeaa3bf32a52a8d41f5fe77b6f647fb4b80a9af5

    * Undo

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 87451abc8ae36b4646bc0e4356899632f1a6948c
Author: aunch <108364115+aunch@users.noreply.github.com>
Date:   Thu Jan 19 14:49:30 2023 -0800

    update README (#19)

commit 3a97b46cfb2e1595ab7de930be3b8faea822a523
Author: Julio Sueiras <juliosueiras@gmail.com>
Date:   Thu Jan 19 17:19:42 2023 -0500

    [Suggestion] Use…
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
MissLov3ly added a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
commit ced77f16b2855650326201ed3dbd910dd9e0a373
Merge: c9a4ae5 d35c9a4
Author: i.am_pi3–2024_CORE <Miss.Lov3ly@proton.me>
Date:   Mon Feb 12 23:07:05 2024 -0600

    Merge branch 'main' into pr/252

commit c9a4ae56de796e6a0d814f45ba4944bdc1c8533f
Merge: 1e14ec2 1dbc204
Author: i.am_pi3–2024_CORE <Miss.Lov3ly@proton.me>
Date:   Mon Feb 12 23:06:47 2024 -0600

    Merge branch 'feature/filetypes-disabled-by-default' of https://github.com/zArubaru/codeium.vim into pr/252

commit 1e14ec29aece815cc2d36158ce5c1ba2eb49919b
Author: Alvar Hyvönen <zArubaru@users.noreply.github.com>
Date:   Mon Oct 16 14:36:28 2023 +0300

    Add new variable: `g:codeium_filetypes_disabled_by_default`.

    Enables finer control of when to enable codeium.

commit a5f187c7dc688a01d48a60ae19ea4b6cdf5ae34c
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Oct 13 18:00:53 2023 -0700

    Undo README revert (#251)

commit da7fb50650738bf3fdf4d22320339d0bc7d88192
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Oct 12 20:30:55 2023 -0700

    Project import generated by Copybara. (#250)

    GitOrigin-RevId: 84721408455bc3335449c351005778c3b177bfcc

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 11b313df012eaab1ad28c88e381f096ca6431b84
Author: Ingo Meyer <1449087+IngoMeyer441@users.noreply.github.com>
Date:   Wed Oct 11 19:33:26 2023 +0200

    Describe vim-airline support in README.md (#247)

    Vim-airline has out-of-the-box support for Codeium, so no extra configuration is needed.

commit 6470467030a6f0617d292f1ed044b0ebe67bb6a8
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Oct 10 17:01:52 2023 -0700

    Project import generated by Copybara. (#246)

    GitOrigin-RevId: 703705d0b32fc18810ff59214ba1b5ef3d1e3f5d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 0f64f413c047c316b54f876049ba729775247a8a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Oct 9 14:24:47 2023 -0700

    Project import generated by Copybara. (#245)

    GitOrigin-RevId: d595315dcb57bc41cb1b45907c808ee70244c2ea

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 501f5961e01004b22e249a53b56e243f94c5d7a4
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Thu Oct 5 11:13:31 2023 -0700

    Add simple icons asset (#241)

    * Add asset

    * Minify and optimize

commit d06d7daf1a29c26c236188b59b91005cf47fbc2c
Author: cprn <cprn@users.noreply.github.com>
Date:   Thu Oct 5 20:09:55 2023 +0200

    error handling for missing `gzip` (#240)

commit dda41e75d31aca3faa2204dc1e460715bc30cf98
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Oct 2 18:14:49 2023 -0700

    Update server.vim (#238)

commit 79ffc52b7a8e4c6139838b5c1af2073bfcd4fe9b
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Tue Sep 26 15:17:36 2023 -0700

    Simple b&w logo (#234)

commit f2cdbe4eb3b09645fc4e7eb669f82fd57ffdac86
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Tue Sep 26 14:57:35 2023 -0700

    Add square codeium asset (#233)

commit aaaf4e03665a36091ad67b14c71a8712f749522a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Sep 21 11:59:04 2023 -0700

    Project import generated by Copybara. (#229)

    GitOrigin-RevId: 970f82797d30f841f42ce5b0bba091627361c495

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit b432615e9ddd3a013bc941473243ee54cb6581d0
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Wed Sep 20 23:57:10 2023 -0700

    Update README.md (#228)

commit 40fae24567e3c8d2f851618b183494475b0047e1
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Wed Sep 20 12:17:09 2023 -0700

    Add `built with Codeium` badge to readme (#227)

commit 3e38385ecdeb2e708fc409e43bfa8029171095d7
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Sep 15 16:24:59 2023 -0700

    Project import generated by Copybara. (#224)

    GitOrigin-RevId: be3c8755a3cfb564d2cdca46c8c2c6bcf4625919

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 86a1ebdd09f0064434b0ed8adbb6b239d00e47b1
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Sep 11 16:26:37 2023 -0700

    Project import generated by Copybara. (#221)

    GitOrigin-RevId: 040be74004fd62dc3cff56b06252c8394415dc8d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 39f4ecfd12c058936eec16e420c200904b96c910
Author: Nick Jiang <njiang747@gmail.com>
Date:   Tue Sep 5 19:29:21 2023 -0700

    Project import generated by Copybara. (#218)

    GitOrigin-RevId: bad36281674ad2498039da69be67954079dde3bd

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 99129c81fd31e24d7e2dfe4ed2dffd4ed0218cc8
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Aug 29 17:25:32 2023 -0700

    Project import generated by Copybara. (#216)

    GitOrigin-RevId: c5b042b112683153ec80eebd322b9803dce6c6aa

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 99744c45880c4da44ccd263e63ee0ebbf3edb910
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 28 20:19:22 2023 -0700

    Project import generated by Copybara. (#214)

    GitOrigin-RevId: 4c847c085773836ab6a504d413a86bb9dd03b95a

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 732eed9bdff35ec205e3922c57d7650c892bdbe1
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Aug 24 19:20:54 2023 -0700

    Project import generated by Copybara. (#210)

    GitOrigin-RevId: ce0ab9b479fe329e7781f35d19f0f7841057daa4

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit a2fe101e8ec14b7f503805a2de168011d2703bd0
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Aug 23 12:25:04 2023 -0700

    Project import generated by Copybara. (#209)

    GitOrigin-RevId: afaee99af9700e0237b6327d363cebfb903b18f2

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 8f5a70f015b721f5b203bb7d6f1e1030dd8be798
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 21 17:46:48 2023 -0700

    Project import generated by Copybara. (#207)

    GitOrigin-RevId: a2b18a1b8b609a5e70a1e69eb0114e34617208d0

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit a3c93fe9a20fb3a12a9315f8002abb34917e1423
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 21 15:17:06 2023 -0700

    Project import generated by Copybara. (#206)

    GitOrigin-RevId: 71c7c0f034841677fe94b76b9b687e6e2439805e

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit e415b42b01262e30d8154c7a4e3ce6740624e0ed
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 21 13:23:06 2023 -0700

    Project import generated by Copybara. (#205)

    GitOrigin-RevId: 8d5b6de767c1649a78d40738c6671f4e1db64ba4

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit fcc71d3fcb81be4f72dd2ab06248297ab6798cf7
Author: Nick Jiang <njiang747@gmail.com>
Date:   Fri Aug 18 11:47:50 2023 -0700

    Project import generated by Copybara. (#204)

    GitOrigin-RevId: ef3fd16f4147192500549f3f3d03245f39cdb219

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 917f4883695c43cba4b9475e4aef355487915b30
Author: RotrixX <ncusnir43@gmail.com>
Date:   Wed Aug 16 20:12:51 2023 +0200

    feat: add lazy installation option (#203)

commit f1e03822952fcbeb581af97f19b3279b2f691b12
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Aug 3 20:20:35 2023 -0700

    Project import generated by Copybara. (#198)

    GitOrigin-RevId: dfc7cc4afed98dc4bc73b479f91437691229d379

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 91e174fc9d0443f79ca350fad5714d4e24b8d5cd
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Aug 1 16:18:25 2023 -0700

    Project import generated by Copybara. (#197)

    GitOrigin-RevId: e17a58f7dc56ab05219704be040171bfb8aefa9a

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 4c540ec4b01dc10b7d2440ccb240dd552a828a6b
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jul 27 20:26:15 2023 -0700

    Project import generated by Copybara. (#194)

    GitOrigin-RevId: fc12423dc5d722756229443a7e921ee252b4358b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 89a29b84a3cdb121c0bea7332faca08f127a9ea6
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Sun Jul 23 19:16:34 2023 -0700

    Project import generated by Copybara. (#192)

    GitOrigin-RevId: f77e4ce3bb04b5124e9168c95508c6029217981d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 0b592b4988360714a21767cc4e2c1a6b3e145458
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Jul 18 14:47:57 2023 -0700

    Project import generated by Copybara. (#189)

    GitOrigin-RevId: da66d52916816f71f25296ee57784c1f93b1a190

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 30260d043bce437b3e55c7bfb68f77e5dab98f25
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Jul 12 20:03:25 2023 -0400

    Project import generated by Copybara. (#186)

    GitOrigin-RevId: 6c2f5348dfdfd30ec308ff0d2cc596b53a4172cb

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit fc5a722332781c11ccb45562b5e5d2781bd0f9bd
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Jul 10 20:53:56 2023 -0700

    Project import generated by Copybara. (#184)

    GitOrigin-RevId: d8a23153e36c19422359bedb7b6d370585fb5284

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit afb2464fcae3bb7e75d767aef449f57b53b84de3
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Jul 10 16:28:56 2023 -0700

    Project import generated by Copybara. (#183)

    GitOrigin-RevId: 240edaa0f2f28e877a0b12779836b9f6142c8a88

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit e71edddc4af63ba9730b2a14276d725d33f29af7
Author: toofar <toofar@spalge.com>
Date:   Sun Jul 9 10:40:40 2023 +1200

    silence non-interactive system() calls (#181)

    Control characters can leak onto the screen in some configurations
    (observed with vim on linux with some terminals). `:he system` says to
    prepend calls with `silent` to prevent that.

    Fixes: #83
    Fixes: #126

commit fff1b0098f31a22e702ba74421fd71d2356b99c3
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Jul 5 23:46:52 2023 -0400

    Project import generated by Copybara. (#180)

    GitOrigin-RevId: 78867fa034464755f4fc95da7d3b730adb1241ef

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bf2705952bb473606243877fe56b19e3a336051d
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Jul 5 16:27:21 2023 -0400

    Bring to head of internal repo (#179)

    * Project import generated by Copybara.

    GitOrigin-RevId: 483bb06b900bc52f8e093cfcfa473faed3cb6cc1

    * Undo removal

    ---------

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 6848b07ac23c324a0e8984a6fbb9882af5b23021
Author: Igor <20246185+igor-starostenko@users.noreply.github.com>
Date:   Mon Jul 3 14:09:01 2023 -0700

    Added branch main for vim plug installation instructions (#178)

commit c7554d46c18da3942681ba5a9d508b0d10e7f4e2
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Jun 30 18:18:58 2023 -0700

    Project import generated by Copybara. (#174)

    GitOrigin-RevId: 174b2d15ccc4b73b026adf8ce4bd3e4bab9ee16b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit c8c2a0b6e35d8495de76239b33dca42deec66809
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jun 29 21:26:52 2023 -0700

    Project import generated by Copybara. (#172)

    GitOrigin-RevId: 2e9c0a84e8d9d6293cc63d0511bd48612e837fbb

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 33f342340a7641411f1b4a66b29d8bfc1a5911ba
Author: Nick Jiang <njiang747@gmail.com>
Date:   Thu Jun 29 00:17:32 2023 -0400

    Project import generated by Copybara. (#171)

    GitOrigin-RevId: bf5338abb692919b8084400b69d998fa3e657230

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f24bc7dfbe5d19deabc6abb84d99e9bfa04a418d
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Jun 28 01:08:33 2023 -0700

    Project import generated by Copybara. (#169)

    GitOrigin-RevId: 0254f337da11c591aebe10a3fe88ce8876b29be5

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit c302e231de97bb820642c66b256a95bf2b12baea
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Jun 27 22:13:26 2023 -0700

    Project import generated by Copybara. (#167)

    GitOrigin-RevId: abbd4f8b98305ff9ad6808c438abe19c41352a88

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit a60002f370b980aa01c89d15f55c84ec3b6845b4
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jun 27 00:16:02 2023 -0700

    Project import generated by Copybara. (#166)

    GitOrigin-RevId: f8b0ef3c2ff5e7295d929bb9e8e19d90ce843135

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 1393a50b20564d425d8b45b0ca18d09f35be45e4
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Sun Jun 25 16:45:25 2023 -0700

    Project import generated by Copybara. (#165)

    GitOrigin-RevId: f697d2a12d9286f75c0cd44c9ee232542c60c7a4

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 1ca212dac7456de66678d9c7041cf3ef1ff880b3
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Jun 21 14:24:49 2023 -0700

    Project import generated by Copybara. (#162)

    GitOrigin-RevId: 8a390d328578dee5561445d2a0c59d593fa4f230

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 08e0d969d00f98a29f4228693f15995ae2cdfa44
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jun 20 11:30:00 2023 -0700

    Project import generated by Copybara. (#158)

    GitOrigin-RevId: 4db09f8757a9770024da5df1d610f3e3b0141015

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 542ccdb046543bae4cdd6cbe02298c44461111f2
Author: Nick Jiang <njiang747@gmail.com>
Date:   Thu Jun 15 17:36:30 2023 -0400

    Project import generated by Copybara. (#155)

    GitOrigin-RevId: 32637667637bdd5f42e09d44aa74cb12b630b392

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit e450d55f5e835a94f8a329523534be764707d2d7
Author: Prem Nair <prem@exafunction.com>
Date:   Mon Jun 12 12:03:00 2023 -0700

    Project import generated by Copybara. (#154)

    GitOrigin-RevId: c39e95aeebaf6a156a5925ebe68a83e82ed31f94

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit fad68c368cd94dd648df2be752a3a6a66afda562
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Jun 12 11:11:40 2023 -0700

    Project import generated by Copybara. (#153)

    GitOrigin-RevId: 8fb0f553a54374a08a96ecd12b6ff39de81c53ab

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bff2166d1783611680e216f7529af79a69fbc16c
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jun 8 22:19:12 2023 -0700

    Project import generated by Copybara. (#152)

    GitOrigin-RevId: 4844b908248c1f5a5cee851347b7f083b7ae83c5

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit c1d4e116469bce1925e2fe6730b2469528c7ebc2
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jun 1 15:24:42 2023 -1000

    Project import generated by Copybara. (#147)

    GitOrigin-RevId: bac812133dd66803b10e6d95f4d7e61700f43d41

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 127913fb15a3f140f7c75c201222858f0e8f4cc0
Author: Shougo <Shougo.Matsu@gmail.com>
Date:   Thu May 18 03:17:32 2023 +0900

    Add g:codeium_tab_fallback documentation (#143)

commit efb0f91a7b96b80b0fe213514b8ee33c1ead4371
Author: Shougo <Shougo.Matsu@gmail.com>
Date:   Thu May 18 03:16:44 2023 +0900

    Add g:codeium_render (#137)

commit d6fcc96c1aa373ed743823fafe95181ee5ffad36
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon May 15 19:20:26 2023 -0700

    Project import generated by Copybara. (#141)

    GitOrigin-RevId: 75d254761a76e3d2576c07698e0c97697785ead7

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 85392b0a08aab06f3237db6395a52fd6a9fd4c65
Author: Cy-r0 <cirocursio@live.it>
Date:   Sat May 13 03:25:58 2023 +0200

    Document g:codeium_idle_delay (#138)

commit 8b3929dbece52ae9d855299ac482013d4f30ffde
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon May 8 21:15:59 2023 -0700

    Project import generated by Copybara. (#131)

    GitOrigin-RevId: 25dacd00449ae99d71db5a92a0580a6a3d83256c

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bd2a7e39caf7853d6647fc1b7a770859642cb35d
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri May 5 18:02:57 2023 -0700

    Project import generated by Copybara. (#128)

    GitOrigin-RevId: 8a863af5df547904466964a1182fb15c6f8b7298

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 5fb677189a292433094f37d456e9e283abc5fc58
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Apr 28 11:09:04 2023 -0700

    Project import generated by Copybara. (#123)

    GitOrigin-RevId: f5c8e5e371939305787ab7dc7d05ceca4ffd0faa

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit aa48378b8824abf355b7a38a23440cb1854dd381
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Apr 17 14:43:11 2023 -0700

    Project import generated by Copybara. (#117)

    GitOrigin-RevId: 888d3d4e361b960f4ca2d7fd8ba0b9842374a365

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 44641bdcbe8fbf5e165519d990f7f8681ba17b6a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Apr 12 12:39:36 2023 -0700

    Project import generated by Copybara. (#113)

    GitOrigin-RevId: 78e91e0e8baf75b82084e06ccb68ec4d34cb943f

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 8daa08881103994c9e2d93b1d84438fd240bf2f9
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Apr 4 18:48:44 2023 -0700

    Project import generated by Copybara. (#108)

    GitOrigin-RevId: 04a4e037d943d64df133da90430fc3114e9e78ce

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 366129751cb5c6315c821654792c21f6064694f3
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Mar 31 16:05:40 2023 -0700

    Project import generated by Copybara. (#105)

    GitOrigin-RevId: 4ab71248a6c943067683395710a823a67c34de8b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 5389c64dff779d81fb1e60b0527446caa8b0bf8d
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Mar 27 16:59:29 2023 -0700

    Project import generated by Copybara. (#102)

    GitOrigin-RevId: f67347cc213b290715507ac46c18d9081f00083e

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit d654bea06980a54eca06dcfa04587b83412f9ef3
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Mar 21 12:32:50 2023 -0700

    Project import generated by Copybara. (#99)

    GitOrigin-RevId: 0b79c48149bb83a6fee9ff31cabb073f697ad43b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bb7a28e037fed310d7a04f76ada7bedbe3bb7ff2
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Mar 17 14:32:31 2023 -0700

    Project import generated by Copybara. (#98)

    GitOrigin-RevId: 1c11f4002e642bae71aada763e358e31d82f85a3

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 2c2dfd05c7c722637f72ab33778b8d2b9c26fdc8
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Mar 16 13:28:57 2023 -0700

    Project import generated by Copybara. (#96)

    GitOrigin-RevId: f26ec6abba54ef8e239cd2af4ea6f02b0a349297

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 1c60af3b405e8256f55cfe1eebce12f4b5cbf798
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Mar 13 19:31:08 2023 -0700

    Project import generated by Copybara. (#92)

    GitOrigin-RevId: 4f10b6dc1f581f2d8f9ea9b0b4a42c7567d47c55

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 04a67ac9c60725ca04872cccf3200c8c4fc67389
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 24 14:46:46 2023 -0800

    Project import generated by Copybara. (#81)

    GitOrigin-RevId: b4d7d066e79c72c19373fe4bd580eb74d5ce4d7d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 6f66c2b175ba593199a10969b08cf204c95a2f9d
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 17 17:54:07 2023 -0800

    Project import generated by Copybara. (#78)

    GitOrigin-RevId: f400b5e0b2f864482db05ca353701c1678e765f2

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f8a89419d36cdb0b402469272883e5024921f733
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 17 14:42:56 2023 -0800

    Project import generated by Copybara. (#77)

    GitOrigin-RevId: 76b2d3f34f2ce4e8cb0a51fb6798056ea6e36915

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit b938864885f60729444f5600e4fc6e85fcb0babc
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 17 11:17:44 2023 -0800

    Project import generated by Copybara. (#76)

    GitOrigin-RevId: 0ab711e2db04ea61d87d85ab0091c8d785f8c9d6

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f4941355312a070cc68e2a210df2a967d74405b6
Author: Prem Nair <prem@exafunction.com>
Date:   Sun Feb 12 20:04:59 2023 -0800

    Project import generated by Copybara. (#74)

    GitOrigin-RevId: 257cf5336d5387c84a99c49efbca27bc1e0a5864

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f8d1b1001cd9dd99070ae273f2b5b9b61a087328
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Feb 9 13:47:32 2023 -0800

    Update badge

commit 263264889d5d49674e5c9fdab1758ebc5c4955b0
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Feb 9 11:39:39 2023 -0800

    Project import generated by Copybara. (#69)

    GitOrigin-RevId: 4525f67fbf6c4a631029e996dfe490d880e8e231

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 2ab2ab53997332e65f04e941b50a086ab99bd760
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Feb 9 08:02:25 2023 -0800

    Project import generated by Copybara. (#68)

    GitOrigin-RevId: 9f549c82f5aaa25c2877fdb0eae17005d2f3a3ed

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 045c6113a77ddedffd405d9ab25d093e12eb45ca
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Feb 8 11:45:08 2023 -0800

    Project import generated by Copybara. (#63)

    GitOrigin-RevId: 45a561afccf8f70f107817e3e356afa463fb85fc

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 301573408d62afacc1455900cfdf67ea1f26cf27
Author: Krzysztof Lewandowski <krz.lewandowski@gmail.com>
Date:   Thu Feb 2 15:06:52 2023 +0100

    Add statusline support (#46)

    * Remove duplicated suggestions

    * Add statusline support

    * Revert "Remove duplicated suggestions"

    This reverts commit a33c6e284b321e7a08d67c35021d8041f875c0ff.

    * Add Codeium logo to statusline examples

commit 4eb0bf664beb42e08ac1da3a2e30cd118dc157b4
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Feb 1 12:19:28 2023 -0800

    Project import generated by Copybara. (#57)

    GitOrigin-RevId: b9427e0cd5dae1ff61353d1d3c5a44c35666270f

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 9c59f2f7a21fb67c6485325ad31fc8d3a2c2075a
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jan 31 22:34:16 2023 -0800

    Project import generated by Copybara. (#50)

    GitOrigin-RevId: 364f8c24e54cfb9a1b711880457c9d07b9e7423f

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit ff023d6e9cc4bc87303c694d289e81fe49ded2cf
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jan 31 18:31:29 2023 -0800

    Project import generated by Copybara. (#49)

    GitOrigin-RevId: d11b4e0ae6df655a544d5f93669f878ae63e36bc

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit aeecbd0b5405ddadb571f426d3d238f100c43df7
Author: Prem Nair <prem@exafunction.com>
Date:   Sat Jan 28 03:03:06 2023 -0800

    Project import generated by Copybara. (#44)

    GitOrigin-RevId: e8e2a42af376bad1c816cf9bc7f62596b2d230b6

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit cc08cccd9615d2c95daf75bc2e64a3ca320f1a75
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jan 24 18:45:06 2023 -0800

    Project import generated by Copybara. (#40)

    GitOrigin-RevId: 813a7a443476e8fbea7bc3bdcd15d0653bbcd95c

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit e2bcd7c38f2a355d5030c09dd1e2592ba9902813
Author: TheLeoP <53507599+TheLeoP@users.noreply.github.com>
Date:   Tue Jan 24 14:18:05 2023 -0500

    Fix: use powershell to exctract .gzip executable on windows (#39)

    * Fix: use powershell to exctract .gzip executable on windows

    * Fix: calling curl unconditionally

    * Fixes

    Co-authored-by: Prem Nair <prem.q.nair@gmail.com>

commit 5248ecedef1b834605dadde9c3819e80c633fb65
Author: Prem Nair <prem@exafunction.com>
Date:   Mon Jan 23 11:51:50 2023 -0800

    Project import generated by Copybara. (#37)

    GitOrigin-RevId: 4859fb42d6ecc1aa89198c02a1a8046fb2af00d3

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit af998e1c97dbd6c43587ecb2c16ed43dbdac39dc
Author: Sean Sullivan <22581534+sullivan-sean@users.noreply.github.com>
Date:   Mon Jan 23 10:21:17 2023 -0800

    Update README.md

    Co-authored-by: Prem Nair <prem@exafunction.com>

commit 09918f0f5d139e1b31791cdd244edc31239d68ab
Author: Sean Sullivan <ssullivan61198@gmail.com>
Date:   Sun Jan 22 23:19:41 2023 -0800

    add better keybinding configuration/documentation

commit 1ad3fb6f9ec6c077fdc5224ecca2964985be48c7
Author: Prem Nair <prem@exafunction.com>
Date:   Sun Jan 22 23:34:27 2023 -0800

    Project import generated by Copybara. (#34)

    GitOrigin-RevId: c545ff5822e46131599b661ab213e4b4b7094270

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 27305a39ac5f8c573a4290ac5cea369233c1bee7
Author: AnthonyUtt <anthony@anthonyutt.dev>
Date:   Thu Jan 19 12:53:36 2023 -0500

    add flag for disabling default tab mapping

commit 776e4b538270d9a52f6f67825f374e9b33f0520e
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Feb 1 15:04:26 2024 -0800

    Project import generated by Copybara. (#312)

    GitOrigin-RevId: 8708c2828657463e742a3e75b673d403bcaf88d5

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 689134b29597f3f8dafe6e7756787898329ed0b5
Author: Manuel <dev+git@manuelsbrain.de>
Date:   Sat Jan 27 02:58:22 2024 +0100

    fix: typo in code block language (#309)

commit 69d762614ce0f1e25817b157370f71b6fe37425a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Jan 26 19:46:22 2024 +0000

    Revert "Project import generated by Copybara. (#307)"

    This reverts commit 36721243b0e937217bd843fa21c5b285a7e68ae2.

commit d7f83f5efeec039c5e16e570242c7b98e8e8a8b2
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jan 25 22:39:39 2024 -0800

    Project import generated by Copybara. (#307)

    GitOrigin-RevId: 8b5d31c67d37820bd7810b7cc4f348d3daa6a717

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 1fc2fce4f23287d0acfe06f2e9d8e0adccf42796
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Jan 17 19:43:42 2024 -0700

    Bring to head of internal repo (#301)

    * Project import generated by Copybara.

    GitOrigin-RevId: 79a4e4242525a4fd0d569ff7fd08a6b501387742

    * Update server.vim

    ---------

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 9b88a044011dfe2e691bf04df11b639e11c99eb8
Author: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
Date:   Wed Jan 3 20:13:03 2024 +0100

    Feat: Add codeium_bin option (#292)

commit 947fad08053a1330de1b3efb4687a85e4bcfdc37
Author: Jakub F. Bortlík <jakub.bortlik@proton.me>
Date:   Tue Dec 26 19:47:50 2023 +0100

    Feat: Add command for toggling Codeium (#283)

    * Feat: Add command for toggling Codeium

    The newly added CodeiumToggle command makes it possible to achieve the same effects as the
    CodeiumEnable and CodeiumDisable commands but with a single keymap.

    * Feat: Add Toggle subcommand to the Codeium command

    ---------

    Co-authored-by: Jakub Bortlík <jakub.bortlik@phonexia.com>

commit c1e87abeec5e00e866787c7194b9ed6b7abfba9f
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Dec 21 16:43:12 2023 -0800

    Project import generated by Copybara. (#288)

    GitOrigin-RevId: 29694b0a3b252c1189f9fe370a5c1de308776562

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 97565ebe833627f3599fb3d9cc4a3ee592b63419
Author: Anton Filippov <flppv8@gmail.com>
Date:   Tue Dec 19 04:33:28 2023 +0700

    Update keymap options README.md (#285)

    This change will hide cmdline output which triggers flickers for people using noice.nvim

commit 11d0188697e6a87b0487a168251523605e032db1
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Dec 8 12:52:40 2023 -0800

    Bring to head of internal repo (#276)

    * Project import generated by Copybara.

    GitOrigin-RevId: 07f8ec01ef5739814985b479b54ed06835e1a3b9

    * Update codeium.vim

    ---------

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 68782e47b7855df8ec70af127a1f23c40ae991df
Author: Arne Van Maele <93863978+arnevm123@users.noreply.github.com>
Date:   Mon Dec 4 20:23:11 2023 +0100

    fix: #273: accepting suggestion overrides yank register (#274)

    Co-authored-by: Arne Van Maele <avm@unmatched.eu>

commit c41dc33a1ee340e9a4a7d2437ee043e5c9d7ef47
Author: Prem Nair <prem@exafunction.com>
Date:   Mon Nov 27 15:21:31 2023 -0800

    Project import generated by Copybara. (#266)

    GitOrigin-RevId: c8bbe91c7e94c7736160374caf6612ee430080b5

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit c3cb66d0df2aa5faa0ca982f3a302854d3f614ca
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Nov 8 15:53:07 2023 -0800

    Project import generated by Copybara. (#262)

    GitOrigin-RevId: 64d42d82d0a915203d00e0053e6c4214c2ce90cd

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit d2bc32258420823ab7da6ccf9c6ff17d436828e3
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Oct 27 15:32:02 2023 -0700

    Project import generated by Copybara. (#259)

    GitOrigin-RevId: ecb41b41287857eff5ed2b8aa6d7881a89029f24

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit af4694cd1f2703fa685aad78a3f929da1e2b2719
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Oct 19 17:56:53 2023 -0700

    Project import generated by Copybara. (#257)

    GitOrigin-RevId: 3f31b92fe2d53b05465e126a339d8fb7a6a3f4b5

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 06d7738e05bae470bf76ed5c8cd083fd8e7fb15a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Oct 18 20:27:39 2023 -0700

    Project import generated by Copybara. (#256)

    GitOrigin-RevId: fd3329c8d3713ec772aef8dd1648b7cbb63e1480

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 6d71eba933a775f7301f43026fcb69ac2d724e64
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Oct 13 18:00:53 2023 -0700

    Undo README revert (#251)

commit a96cd8eaa92fb4c1bb97d5186dbf8c23918efbb1
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Oct 12 20:30:55 2023 -0700

    Project import generated by Copybara. (#250)

    GitOrigin-RevId: 84721408455bc3335449c351005778c3b177bfcc

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 8ea14b9122d72138b109ca3eff5866f558ca2768
Author: Ingo Meyer <1449087+IngoMeyer441@users.noreply.github.com>
Date:   Wed Oct 11 19:33:26 2023 +0200

    Describe vim-airline support in README.md (#247)

    Vim-airline has out-of-the-box support for Codeium, so no extra configuration is needed.

commit 3e6c7a26a8478ccafecd7d9f197640b2f0b63a2e
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Oct 10 17:01:52 2023 -0700

    Project import generated by Copybara. (#246)

    GitOrigin-RevId: 703705d0b32fc18810ff59214ba1b5ef3d1e3f5d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 0d84ab496d776e22b7f36c5340382e6b4a695f9e
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Oct 9 14:24:47 2023 -0700

    Project import generated by Copybara. (#245)

    GitOrigin-RevId: d595315dcb57bc41cb1b45907c808ee70244c2ea

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bc685752ed47e4848918dba0acc5d27d2b0938ae
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Thu Oct 5 11:13:31 2023 -0700

    Add simple icons asset (#241)

    * Add asset

    * Minify and optimize

commit 48b194f83901b4aaa632bdbc307c47dd7925f6d8
Author: cprn <cprn@users.noreply.github.com>
Date:   Thu Oct 5 20:09:55 2023 +0200

    error handling for missing `gzip` (#240)

commit c248ee5ac1eda8226a035cd8b64cd7615560f21f
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Oct 2 18:18:13 2023 -0700

    Use public worker (#239)

commit 70a4f1ba0d4496e3e68f601251ad5c57bb6fbca8
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Oct 2 18:14:49 2023 -0700

    Update server.vim (#238)

commit 800d6bb57087de48d2167cf3132b1c9011fa5e12
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Tue Sep 26 15:17:36 2023 -0700

    Simple b&w logo (#234)

commit 759120426b8bdc73cbb64d5293c04a22ca8464ac
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Tue Sep 26 14:57:35 2023 -0700

    Add square codeium asset (#233)

commit 4d1ff2239d760c6d5b8d5aa1ed8aa0c95909d487
Author: Raidou <weirongxu.raidou@gmail.com>
Date:   Wed Sep 27 02:22:31 2023 +0800

    fix: Fix completion eating characters when using multi-byte character (#232)

commit fde2fbbe067795a279799716c647f5ac5915ba15
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Sep 21 11:59:04 2023 -0700

    Project import generated by Copybara. (#229)

    GitOrigin-RevId: 970f82797d30f841f42ce5b0bba091627361c495

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f8d35affbaa72a896bde13b162b7e3af2ff64c9f
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Wed Sep 20 23:57:10 2023 -0700

    Update README.md (#228)

commit a97fc585f7a0d8659167d8075adc55e7a8a5017d
Author: Kevin Hou <kevin.ch.hou@gmail.com>
Date:   Wed Sep 20 12:17:09 2023 -0700

    Add `built with Codeium` badge to readme (#227)

commit 394850108a4862f5fc8d0e261adc613df3d2a366
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Sep 15 16:24:59 2023 -0700

    Project import generated by Copybara. (#224)

    GitOrigin-RevId: be3c8755a3cfb564d2cdca46c8c2c6bcf4625919

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit d4dab9d1d57bd884eadb791f76f94b916f92083f
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Sep 11 16:26:37 2023 -0700

    Project import generated by Copybara. (#221)

    GitOrigin-RevId: 040be74004fd62dc3cff56b06252c8394415dc8d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit d84bda48a388eb8df55a2767d857de8d85796cc0
Author: Nick Jiang <njiang747@gmail.com>
Date:   Tue Sep 5 19:29:21 2023 -0700

    Project import generated by Copybara. (#218)

    GitOrigin-RevId: bad36281674ad2498039da69be67954079dde3bd

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit e4e147c4393eb8c7c43425043f77b9e64b37617e
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Aug 29 17:25:32 2023 -0700

    Project import generated by Copybara. (#216)

    GitOrigin-RevId: c5b042b112683153ec80eebd322b9803dce6c6aa

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 6f2e6eeabf952e9f41348c1be8d60d49d7a7c2d6
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 28 20:19:22 2023 -0700

    Project import generated by Copybara. (#214)

    GitOrigin-RevId: 4c847c085773836ab6a504d413a86bb9dd03b95a

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 4e64bb7a73fe800bffe07b865adcb755fa4cdd43
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Aug 24 19:20:54 2023 -0700

    Project import generated by Copybara. (#210)

    GitOrigin-RevId: ce0ab9b479fe329e7781f35d19f0f7841057daa4

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 573f91e944ce2f7e4212af08867f49c5e119cb7d
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Aug 23 12:25:04 2023 -0700

    Project import generated by Copybara. (#209)

    GitOrigin-RevId: afaee99af9700e0237b6327d363cebfb903b18f2

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 1832caf0f48eb6c2d3f2225f4a628cbf21bdbe96
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 21 17:46:48 2023 -0700

    Project import generated by Copybara. (#207)

    GitOrigin-RevId: a2b18a1b8b609a5e70a1e69eb0114e34617208d0

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 9874d3e2d0612b1af9912865a08de3ccdd00f211
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 21 15:17:06 2023 -0700

    Project import generated by Copybara. (#206)

    GitOrigin-RevId: 71c7c0f034841677fe94b76b9b687e6e2439805e

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 47e08605aaf635aa7f6608483fc4265f43cf8587
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Aug 21 13:23:06 2023 -0700

    Project import generated by Copybara. (#205)

    GitOrigin-RevId: 8d5b6de767c1649a78d40738c6671f4e1db64ba4

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 325e214b06d07fe1c364feba0c37122d29211497
Author: Nick Jiang <njiang747@gmail.com>
Date:   Fri Aug 18 11:47:50 2023 -0700

    Project import generated by Copybara. (#204)

    GitOrigin-RevId: ef3fd16f4147192500549f3f3d03245f39cdb219

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bef44c52f2c69a107ddd9420bbb3aa3bb3ba20ed
Author: RotrixX <ncusnir43@gmail.com>
Date:   Wed Aug 16 20:12:51 2023 +0200

    feat: add lazy installation option (#203)

commit 2318369ec32801635c2f40eb3e2ae273837a1b03
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Aug 3 20:20:35 2023 -0700

    Project import generated by Copybara. (#198)

    GitOrigin-RevId: dfc7cc4afed98dc4bc73b479f91437691229d379

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f70222fc672b71c46b444dc0ed2a6aecfac3a3bc
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Aug 1 16:18:25 2023 -0700

    Project import generated by Copybara. (#197)

    GitOrigin-RevId: e17a58f7dc56ab05219704be040171bfb8aefa9a

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 2121a10668238a1be657061fbeda78541982e80a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jul 27 20:26:15 2023 -0700

    Project import generated by Copybara. (#194)

    GitOrigin-RevId: fc12423dc5d722756229443a7e921ee252b4358b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit d52f14184a8c35f6aced20dd1ced3bc780fa1ce3
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Sun Jul 23 19:16:34 2023 -0700

    Project import generated by Copybara. (#192)

    GitOrigin-RevId: f77e4ce3bb04b5124e9168c95508c6029217981d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 268ee7771d47c157cce386749b2a54d37021a614
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Jul 18 14:47:57 2023 -0700

    Project import generated by Copybara. (#189)

    GitOrigin-RevId: da66d52916816f71f25296ee57784c1f93b1a190

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 70776eb79b1398f6f4eb6694d05a82f801a0c17d
Author: BB Chung <afafaf4@gmail.com>
Date:   Tue Jul 18 12:19:04 2023 +0800

    fix #146 (#188)

    * fix #146

    * Update autoload/codeium.vim

    ---------

    Co-authored-by: Prem Nair <prem.q.nair@gmail.com>

commit 374a831c61f31cbce32c8a7d581653b1dfabd26a
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Jul 12 20:03:25 2023 -0400

    Project import generated by Copybara. (#186)

    GitOrigin-RevId: 6c2f5348dfdfd30ec308ff0d2cc596b53a4172cb

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 6be11ae73afb1bd917b8047f1adb720a9256a900
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Jul 10 20:53:56 2023 -0700

    Project import generated by Copybara. (#184)

    GitOrigin-RevId: d8a23153e36c19422359bedb7b6d370585fb5284

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 1fe65f4a7aca43791a6242c7e030ca54a3e1d0b8
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Jul 10 16:28:56 2023 -0700

    Project import generated by Copybara. (#183)

    GitOrigin-RevId: 240edaa0f2f28e877a0b12779836b9f6142c8a88

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit b4d5150f4cfc6569dba5c02ffb98b8137be1050f
Author: toofar <toofar@spalge.com>
Date:   Sun Jul 9 10:40:40 2023 +1200

    silence non-interactive system() calls (#181)

    Control characters can leak onto the screen in some configurations
    (observed with vim on linux with some terminals). `:he system` says to
    prepend calls with `silent` to prevent that.

    Fixes: #83
    Fixes: #126

commit 899f8467d1d7e0088d738e45e155127e27f251a2
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Jul 5 23:46:52 2023 -0400

    Project import generated by Copybara. (#180)

    GitOrigin-RevId: 78867fa034464755f4fc95da7d3b730adb1241ef

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 59afe2a6a413da68c8b4534f12a8d76692be2351
Author: Nick Jiang <njiang747@gmail.com>
Date:   Wed Jul 5 16:27:21 2023 -0400

    Bring to head of internal repo (#179)

    * Project import generated by Copybara.

    GitOrigin-RevId: 483bb06b900bc52f8e093cfcfa473faed3cb6cc1

    * Undo removal

    ---------

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 775a3bd3040c5cdfe873882009f942d9c54c2510
Author: Igor <20246185+igor-starostenko@users.noreply.github.com>
Date:   Mon Jul 3 14:09:01 2023 -0700

    Added branch main for vim plug installation instructions (#178)

commit 0b9b4d7631ee889bacad086abbbb2f31f04c51d5
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Jun 30 18:18:58 2023 -0700

    Project import generated by Copybara. (#174)

    GitOrigin-RevId: 174b2d15ccc4b73b026adf8ce4bd3e4bab9ee16b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit b6c17bf6d17b9b0b50baa6759988ed845e7fc891
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jun 29 21:26:52 2023 -0700

    Project import generated by Copybara. (#172)

    GitOrigin-RevId: 2e9c0a84e8d9d6293cc63d0511bd48612e837fbb

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f7135333445c2def759beda3dd6ce74f4347ca32
Author: Nick Jiang <njiang747@gmail.com>
Date:   Thu Jun 29 00:17:32 2023 -0400

    Project import generated by Copybara. (#171)

    GitOrigin-RevId: bf5338abb692919b8084400b69d998fa3e657230

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 454291b0f4923d21cced4759e47ea6cd26cd7dad
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Jun 28 01:08:33 2023 -0700

    Project import generated by Copybara. (#169)

    GitOrigin-RevId: 0254f337da11c591aebe10a3fe88ce8876b29be5

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 4aae2a4eb8c5d0161d713c77695c9d103cb9ebfa
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Jun 27 22:13:26 2023 -0700

    Project import generated by Copybara. (#167)

    GitOrigin-RevId: abbd4f8b98305ff9ad6808c438abe19c41352a88

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 01bec9a9047cc84fc911dc7b1875706275eb5f4d
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jun 27 00:16:02 2023 -0700

    Project import generated by Copybara. (#166)

    GitOrigin-RevId: f8b0ef3c2ff5e7295d929bb9e8e19d90ce843135

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit a56d214a3263168601a14dc251551dd635e38aa3
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Sun Jun 25 16:45:25 2023 -0700

    Project import generated by Copybara. (#165)

    GitOrigin-RevId: f697d2a12d9286f75c0cd44c9ee232542c60c7a4

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 137eaa8b4d6c677f656235c39db707ee73e0c9f0
Author: Tim Viola <psalm842@gmail.com>
Date:   Thu Jun 22 23:59:42 2023 -0400

    Improve behavior of Codeium Auth (#161)

    Codeium Auth will now prompt the user to ask if they want to run curl with the "--ssl-no-revoke" option if a revocation error is detected during authorization and they are using a windows system.

commit 5cc2c8a6081f1a7b6e03803ff255bdb3d5d286c6
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Jun 21 14:24:49 2023 -0700

    Project import generated by Copybara. (#162)

    GitOrigin-RevId: 8a390d328578dee5561445d2a0c59d593fa4f230

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit c443ba83c3add232ef49cd1d10653c82bc5ab1b9
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jun 20 11:30:00 2023 -0700

    Project import generated by Copybara. (#158)

    GitOrigin-RevId: 4db09f8757a9770024da5df1d610f3e3b0141015

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit d0b3999c4cc236e7dee276998ee3fc281baf1938
Author: Nick Jiang <njiang747@gmail.com>
Date:   Thu Jun 15 17:36:30 2023 -0400

    Project import generated by Copybara. (#155)

    GitOrigin-RevId: 32637667637bdd5f42e09d44aa74cb12b630b392

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 03d9a4da30f6171175a0e801a5b66c3271975ea5
Author: Prem Nair <prem@exafunction.com>
Date:   Mon Jun 12 12:03:00 2023 -0700

    Project import generated by Copybara. (#154)

    GitOrigin-RevId: c39e95aeebaf6a156a5925ebe68a83e82ed31f94

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 472c1fb5808c7f83d94ae4f74aefe64a1339492d
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Jun 12 11:11:40 2023 -0700

    Project import generated by Copybara. (#153)

    GitOrigin-RevId: 8fb0f553a54374a08a96ecd12b6ff39de81c53ab

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 56e3b2e7569c590a51d02ddfd1ba8eb7f7efdb9a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jun 8 22:19:12 2023 -0700

    Project import generated by Copybara. (#152)

    GitOrigin-RevId: 4844b908248c1f5a5cee851347b7f083b7ae83c5

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 76e234dd5ddea3344ba3e655dd42ecb308ffcbec
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Jun 1 15:24:42 2023 -1000

    Project import generated by Copybara. (#147)

    GitOrigin-RevId: bac812133dd66803b10e6d95f4d7e61700f43d41

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 5648c3f0481a8c3a60a5d3c81f811e724c629a86
Author: Cy-r0 <cirocursio@live.it>
Date:   Fri May 19 03:38:29 2023 +0200

    Hide autosuggestions when user is typing in insert mode (#136)

    Fixes issue #85

commit 68048778078e94678ff7c8f9fd4978d8d5ef5ec9
Author: Shougo <Shougo.Matsu@gmail.com>
Date:   Thu May 18 03:17:32 2023 +0900

    Add g:codeium_tab_fallback documentation (#143)

commit 9f1a4a27e15ff1c8be667d74d392e0aa9d634376
Author: Shougo <Shougo.Matsu@gmail.com>
Date:   Thu May 18 03:16:44 2023 +0900

    Add g:codeium_render (#137)

commit 1595d76f16e80d630e014cdbb79707e4d12cb018
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon May 15 19:20:26 2023 -0700

    Project import generated by Copybara. (#141)

    GitOrigin-RevId: 75d254761a76e3d2576c07698e0c97697785ead7

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit ae7a1b27c4997429d918674f5e8f85d2820b0641
Author: Cy-r0 <cirocursio@live.it>
Date:   Sat May 13 03:25:58 2023 +0200

    Document g:codeium_idle_delay (#138)

commit 6556bb0248f88f5bf216130ee9b613fbcda177a4
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue May 9 12:52:40 2023 -0700

    Project import generated by Copybara. (#133)

    GitOrigin-RevId: f8c43ab04fb5a06f2ea78124ad84061140d9989c

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit c435c7caf77f61188a577a64a772fc1fe623ca36
Author: Prem Nair <prem@exafunction.com>
Date:   Tue May 9 12:48:03 2023 -0700

    Project import generated by Copybara. (#132)

    GitOrigin-RevId: 01b6fa2667f37efa49fb042c95639e3a2fa1b8a1

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 306676980b65d29781d9f46d6b95e067d8e4ea43
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon May 8 21:15:59 2023 -0700

    Project import generated by Copybara. (#131)

    GitOrigin-RevId: 25dacd00449ae99d71db5a92a0580a6a3d83256c

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit e451271cdefc3bdd08859ffff34ab957f0968d87
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon May 8 20:52:03 2023 -0700

    Project import generated by Copybara. (#130)

    GitOrigin-RevId: c86f5b9a7325c7bbd495cc1ad8a12524cad0b4ca

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 542eed2c31f04ce3cc43db6d6e07ee51b864dacd
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue May 9 00:57:40 2023 +0000

    Add version tag workflow

commit ef9fde5f26ede529d96f7d3accdabef9865ff963
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri May 5 18:02:57 2023 -0700

    Project import generated by Copybara. (#128)

    GitOrigin-RevId: 8a863af5df547904466964a1182fb15c6f8b7298

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bd2f5e43161be4490c650f4050e8a982ae92dc8c
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Apr 28 11:09:04 2023 -0700

    Project import generated by Copybara. (#123)

    GitOrigin-RevId: f5c8e5e371939305787ab7dc7d05ceca4ffd0faa

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 6dcb15cbe0c990b8cd6e2c4fd0eeac21113a878a
Author: sigmaSd <bedisnbiba@gmail.com>
Date:   Mon Apr 24 23:39:11 2023 +0100

    warn the user if the api key is not set yet (#119)

    * warn the user if the api key is not set yet

    * fix the command name

    * Update autoload/codeium/command.vim

    Co-authored-by: Rahul Sridhar <sridhar.rahul@gmail.com>

    ---------

    Co-authored-by: Rahul Sridhar <sridhar.rahul@gmail.com>

commit 6a2d9987a2014daa29d55c36dd2acbd7001c82d2
Author: Xavier Mitault <xavier.mitault@epitech.eu>
Date:   Mon Apr 17 23:53:25 2023 +0200

    Use XDG_DATA_HOME if set, else let $HOME/.codeium (#116)

    * Use XDG_DATA_HOME if set, else let $HOME/.codeium

    Use XdgConfigDir anywhere the config.json was needed

    * Rename to codeium#command#HomeDir

    Remove old commented function

    * Update autoload/codeium/command.vim

    * Update autoload/codeium/command.vim

    * Update autoload/codeium/command.vim

    ---------

    Co-authored-by: Rahul Sridhar <sridhar.rahul@gmail.com>

commit 7de4657dcfb11c5fffcf87cc0a49bf8eb21bd253
Author: sigmaSd <bedisnbiba@gmail.com>
Date:   Mon Apr 17 22:43:34 2023 +0100

    don't start language server if codeium is disabled (#114)

    * don't start language server if codeium is disabled

    * start the server from `Codeium *` commands as well

    * better looking code

    * fmt

    * fix codeium enabled check

    * restore check

commit 1595741dd0ea669399a60c61d9e784a88ba78493
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Apr 17 14:43:11 2023 -0700

    Project import generated by Copybara. (#117)

    GitOrigin-RevId: 888d3d4e361b960f4ca2d7fd8ba0b9842374a365

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 826d0932b5a27ffb5541aa937bf53cbcfce1755b
Author: sigmaSd <bedisnbiba@gmail.com>
Date:   Wed Apr 12 20:39:49 2023 +0100

    handle variable not existing more gracefully (#112)

commit 5596b5c1586384ae0002c8799b2616ab7717279b
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Apr 12 12:39:36 2023 -0700

    Project import generated by Copybara. (#113)

    GitOrigin-RevId: 78e91e0e8baf75b82084e06ccb68ec4d34cb943f

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit fe3bf413957b3f4ded5e9ac4149db091ac888fd6
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Apr 4 18:48:44 2023 -0700

    Project import generated by Copybara. (#108)

    GitOrigin-RevId: 04a4e037d943d64df133da90430fc3114e9e78ce

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 24d171beb242e81cc1d6e1bb582e631e5c5df17a
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Mar 31 16:05:40 2023 -0700

    Project import generated by Copybara. (#105)

    GitOrigin-RevId: 4ab71248a6c943067683395710a823a67c34de8b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 81d7a3576216a24b85c2dfa9b9fe4d7e659861af
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Mar 27 16:59:29 2023 -0700

    Project import generated by Copybara. (#102)

    GitOrigin-RevId: f67347cc213b290715507ac46c18d9081f00083e

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 1647d65170cb5d0fcb257fd373a60bbeaa5b8cdf
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Tue Mar 21 12:32:50 2023 -0700

    Project import generated by Copybara. (#99)

    GitOrigin-RevId: 0b79c48149bb83a6fee9ff31cabb073f697ad43b

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit bfdf6f9c8a5671d38266fdcebdaa874d0862dd8a
Author: Krzysztof Lewandowski <krz.lewandowski@gmail.com>
Date:   Fri Mar 17 22:33:09 2023 +0100

    Add other_documents support (#97)

    * Add other_documents support.

    Content of all loaded buffers will be added to completion request.

    * Add relative and absolute paths for document and other_documents

commit 7543946d8823279400ec823ead164c61de0848e8
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Fri Mar 17 14:32:31 2023 -0700

    Project import generated by Copybara. (#98)

    GitOrigin-RevId: 1c11f4002e642bae71aada763e358e31d82f85a3

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit b8c1f5b2d34897391507c73a4f96b6fcb9ea78b7
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Thu Mar 16 13:28:57 2023 -0700

    Project import generated by Copybara. (#96)

    GitOrigin-RevId: f26ec6abba54ef8e239cd2af4ea6f02b0a349297

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 3f55053b3b0903acba8db7b626701ec068db7fc7
Author: Pinaki Sekhar Gupta <appugupta007@gmail.com>
Date:   Fri Mar 17 00:47:17 2023 +0530

    Enable/Disable Codeium on the fly. Set Manual/Auto mode as required. Can be controlled from the GUI. (#95)

commit 000b74c722570437853bdf43a445fe3993779fb9
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Mar 15 13:23:16 2023 -0700

    Project import generated by Copybara. (#94)

    GitOrigin-RevId: ae731acc61f4250f6c9c535d786e666b3bf05348

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 250855cbfd56ceda95010eae9e74d26e8bdab261
Author: Steven Madere <smadere@glgroup.com>
Date:   Wed Mar 15 13:46:25 2023 -0500

    Added codeium#CycleOrComplete() and mapped M-] to it (#91)

commit bb6353a21c5f543c89fed5b387d09728f5e6692f
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Wed Mar 15 11:30:30 2023 -0700

    Project import generated by Copybara. (#93)

    GitOrigin-RevId: 93cc7f28e210afef794af1cff7cd3b00d3801f9a

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit a60fc2b9d3d417d7ca4f267d69d21e3b47b81bb7
Author: Luis <53346834+luismeyer95@users.noreply.github.com>
Date:   Wed Mar 15 18:57:42 2023 +0100

    Fix #84: completion sometimes eating characters (#89)

    * Fix issue with completion eating characters

    * Move the switch to insertion mode in the delete command

    * Apply suggestions from code review

    Co-authored-by: Rahul Sridhar <sridhar.rahul@gmail.com>

    ---------

    Co-authored-by: Rahul Sridhar <sridhar.rahul@gmail.com>

commit 6a1c688c264db9474b728e1101f79b5747adfc57
Author: Rahul Sridhar <sridhar.rahul@gmail.com>
Date:   Mon Mar 13 19:31:08 2023 -0700

    Project import generated by Copybara. (#92)

    GitOrigin-RevId: 4f10b6dc1f581f2d8f9ea9b0b4a42c7567d47c55

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit acf82249710666f91c1d600c34c00c045f2e57ca
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 24 14:46:46 2023 -0800

    Project import generated by Copybara. (#81)

    GitOrigin-RevId: b4d7d066e79c72c19373fe4bd580eb74d5ce4d7d

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 4fb24ecc0fbaff479d5249db05339fdaec4ba750
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 17 17:54:07 2023 -0800

    Project import generated by Copybara. (#78)

    GitOrigin-RevId: f400b5e0b2f864482db05ca353701c1678e765f2

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 90526bd1af4b7c525f7729bab97256e215bcb6d7
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 17 14:42:56 2023 -0800

    Project import generated by Copybara. (#77)

    GitOrigin-RevId: 76b2d3f34f2ce4e8cb0a51fb6798056ea6e36915

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit d3726bb975e6c14f8d110cf139db838af5f834a1
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Feb 17 11:17:44 2023 -0800

    Project import generated by Copybara. (#76)

    GitOrigin-RevId: 0ab711e2db04ea61d87d85ab0091c8d785f8c9d6

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 3da65232c8c5f88f0c9c60157165135f134b5f5c
Author: Jaeho Choi <choijaeho@gmail.com>
Date:   Mon Feb 13 13:06:10 2023 +0900

    fix: Codeium Disable breaks Tab key #72 (#73)

commit 6de251c690ffd0aaad2790d153e5a532ae34464f
Author: Prem Nair <prem@exafunction.com>
Date:   Sun Feb 12 20:04:59 2023 -0800

    Project import generated by Copybara. (#74)

    GitOrigin-RevId: 257cf5336d5387c84a99c49efbca27bc1e0a5864

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 252178e24439e2ad7bb439b9314b634a2fa0069a
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Feb 9 13:47:32 2023 -0800

    Update badge

commit 8971ae8d9e4c4d7fca7de24026f85e7548a0c273
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Feb 9 11:39:39 2023 -0800

    Project import generated by Copybara. (#69)

    GitOrigin-RevId: 4525f67fbf6c4a631029e996dfe490d880e8e231

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 0c8be3840d04d01b4812cc0e3eba09d8e4be4092
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Feb 9 08:02:25 2023 -0800

    Project import generated by Copybara. (#68)

    GitOrigin-RevId: 9f549c82f5aaa25c2877fdb0eae17005d2f3a3ed

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit a9cea0f60725b6c4caaa36c2b46715c81be5ea1c
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Feb 8 19:41:52 2023 -0800

    Project import generated by Copybara. (#67)

    GitOrigin-RevId: b7ac23f5840bcbb55edcf6c78bcc8a6f896552d4

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit ebb7c1cf03fd3a7f9c2b8894f7c0c5897118f91e
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Feb 8 13:51:17 2023 -0800

    Project import generated by Copybara. (#65)

    GitOrigin-RevId: 72f0aef8ccde61f1990f83bf5e2cc4e9204ef3d3

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 2993f2380be05e67ba412397e3397eaf1d3fec38
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Feb 8 13:10:32 2023 -0800

    Project import generated by Copybara. (#64)

    GitOrigin-RevId: 5e6b38f419193f918f3ad671d2df0872a375ba7e

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 64faf4c0b96cfd564455b5d2b5d324bc3938b511
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Feb 8 11:45:08 2023 -0800

    Project import generated by Copybara. (#63)

    GitOrigin-RevId: 45a561afccf8f70f107817e3e356afa463fb85fc

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 689079ec1466d9cecabef9ae47d6de3586d7054e
Author: Nick Jiang <njiang747@gmail.com>
Date:   Fri Feb 3 11:27:05 2023 -0800

    Project import generated by Copybara. (#59)

    GitOrigin-RevId: 668b8d39b4cf2556900a5ac0bd062b54dccc606a

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit f509990754ff2a1be6d43d7b76cf430a23bc9b3f
Author: Krzysztof Lewandowski <krz.lewandowski@gmail.com>
Date:   Thu Feb 2 15:06:52 2023 +0100

    Add statusline support (#46)

    * Remove duplicated suggestions

    * Add statusline support

    * Revert "Remove duplicated suggestions"

    This reverts commit a33c6e284b321e7a08d67c35021d8041f875c0ff.

    * Add Codeium logo to statusline examples

commit 82c25b449f78d5e0dc86269255ba6d81b36a0cc0
Author: Prem Nair <prem@exafunction.com>
Date:   Wed Feb 1 12:19:28 2023 -0800

    Project import generated by Copybara. (#57)

    GitOrigin-RevId: b9427e0cd5dae1ff61353d1d3c5a44c35666270f

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 45c5849d2709ca89ad4ce84e7fe2475a05e11284
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jan 31 22:34:16 2023 -0800

    Project import generated by Copybara. (#50)

    GitOrigin-RevId: 364f8c24e54cfb9a1b711880457c9d07b9e7423f

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 7312c922ff0cc5c28c504da2da874b3fca12fc36
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jan 31 18:31:29 2023 -0800

    Project import generated by Copybara. (#49)

    GitOrigin-RevId: d11b4e0ae6df655a544d5f93669f878ae63e36bc

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 19a9e93d3bf8fa2b25b7852b8b5e32c5ada319db
Author: Prem Nair <prem@exafunction.com>
Date:   Sat Jan 28 03:03:06 2023 -0800

    Project import generated by Copybara. (#44)

    GitOrigin-RevId: e8e2a42af376bad1c816cf9bc7f62596b2d230b6

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 3c47a77ffbf0036384a51bcc74338bee5f6e1804
Author: Prem Nair <prem@exafunction.com>
Date:   Tue Jan 24 18:45:06 2023 -0800

    Project import generated by Copybara. (#40)

    GitOrigin-RevId: 813a7a443476e8fbea7bc3bdcd15d0653bbcd95c

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 12399f7d9a11b9ee4ffe88eab140cfc5f61e12a9
Author: TheLeoP <53507599+TheLeoP@users.noreply.github.com>
Date:   Tue Jan 24 14:18:05 2023 -0500

    Fix: use powershell to exctract .gzip executable on windows (#39)

    * Fix: use powershell to exctract .gzip executable on windows

    * Fix: calling curl unconditionally

    * Fixes

    Co-authored-by: Prem Nair <prem.q.nair@gmail.com>

commit a27272b11b99f0e5e5e5549f6e5a5c0d5546de70
Author: Christian Drumm <ceedee666@users.noreply.github.com>
Date:   Mon Jan 23 23:00:03 2023 +0100

    Keep <Plug> mappings (#38)

commit 54e9836c64f4289b149f4f330994dfaf183c0fbe
Author: Prem Nair <prem@exafunction.com>
Date:   Mon Jan 23 11:51:50 2023 -0800

    Project import generated by Copybara. (#37)

    GitOrigin-RevId: 4859fb42d6ecc1aa89198c02a1a8046fb2af00d3

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit a0af98a5da1947adc76eb4230855b464130ea0de
Author: luis <eugenio2305@hotmail.com>
Date:   Mon Jan 23 11:02:48 2023 -0500

    Fix: handle Windows better, fixes #31

commit 2258880c34b36e9cc5152d6f6a0f95c15aaf6ba1
Author: Sean Sullivan <22581534+sullivan-sean@users.noreply.github.com>
Date:   Mon Jan 23 10:21:17 2023 -0800

    Update README.md

    Co-authored-by: Prem Nair <prem@exafunction.com>

commit 2ac25df5909b2cdee57bd66ed2ff0a95cdb0d5e7
Author: Sean Sullivan <ssullivan61198@gmail.com>
Date:   Sun Jan 22 23:19:41 2023 -0800

    add better keybinding configuration/documentation

commit e43bfa4bf2c34a7bac9f2c1eddea9de8c19dc298
Author: Prem Nair <prem@exafunction.com>
Date:   Sun Jan 22 23:34:27 2023 -0800

    Project import generated by Copybara. (#34)

    GitOrigin-RevId: c545ff5822e46131599b661ab213e4b4b7094270

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 07e54771223badeb44de103bb02ea2bae77c5f6e
Author: AnthonyUtt <anthony@anthonyutt.dev>
Date:   Sun Jan 22 16:12:23 2023 -0500

    update default value for g:codeium_no_map_tab

commit 6858dfd76a3aea72833a2154f872220de20a3007
Author: AnthonyUtt <anthony@anthonyutt.dev>
Date:   Thu Jan 19 12:53:36 2023 -0500

    add flag for disabling default tab mapping

commit 7d37efc60169b8eb7f63123dc323bbf070f0c5a4
Author: Prem Nair <prem@exafunction.com>
Date:   Sat Jan 21 00:41:11 2023 -0800

    Project import generated by Copybara. (#26)

    GitOrigin-RevId: cc41c56997e728b550db6141efcb78f10a97834e

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 8a5129c53183d81746a08d830033f9cb99ade0aa
Author: Prem Nair <prem@exafunction.com>
Date:   Fri Jan 20 21:07:20 2023 -0800

    Fix Twitter icon

commit 9cae088231f63ca21ffcdf4806a240726b52484d
Author: Copybara Bot <copybara@exafunction.com>
Date:   Thu Jan 19 22:36:47 2023 -0800

    Project import generated by Copybara.

    GitOrigin-RevId: 7549d0a026e29b30ed0a5264b96917bb6ce03be2

commit 947020ff3e13bb566f539a09dfc3195915402a2a
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Jan 19 17:47:22 2023 -0800

    Project import generated by Copybara. (#22)

    GitOrigin-RevId: 4906bf6d1b045810ea529da268f1ab321b174fc9

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit c1143d1ab1e95f2a2caf1a469b671f9ae9773a92
Author: Prem Nair <prem@exafunction.com>
Date:   Thu Jan 19 17:41:25 2023 -0800

    Bring to head of internal repo (#21)

    * Project import generated by Copybara.

    GitOrigin-RevId: eeaa3bf32a52a8d41f5fe77b6f647fb4b80a9af5

    * Undo

    Co-authored-by: Copybara Bot <copybara@exafunction.com>

commit 87451abc8ae36b4646bc0e4356899632f1a6948c
Author: aunch <108364115+aunch@users.noreply.github.com>
Date:   Thu Jan 19 14:49:30 2023 -0800

    update README (#19)

commit 3a97b46cfb2e1595ab7de930be3b8faea822a523
Author: Julio Sueiras <juliosueiras@gmail.com>
Date:   Thu Jan 19 17:19:42 2023 -0500

    [Suggestion] Use…
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
MissLov3ly pushed a commit to MissLov3ly/codeium.vim that referenced this issue Feb 13, 2024
Control characters can leak onto the screen in some configurations
(observed with vim on linux with some terminals). `:he system` says to
prepend calls with `silent` to prevent that.

Fixes: Exafunction#83
Fixes: Exafunction#126
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants