-
Notifications
You must be signed in to change notification settings - Fork 9
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
Can't sync updates to todoist #22
Comments
Can't reproduce :| Any other details? |
@romgrk I'm seeing the same error. I can use Then if I Neovim version:
Node: v18.1.0. Neovim node package: [email protected]. Minimal vimrc I used to reproduce this issue: set runtimepath^=~/.vim runtimepath+=~/.vim/after
let &packpath = &runtimepath
call plug#begin('~/.vim/plugged')
Plug 'romgrk/todoist.nvim', { 'do': ':TodoistInstall' }
call plug#end()
set nocompatible
set updatetime=300
set cmdheight=2
|
I am having the exact same problem as @Frederick888. |
Sorry this will probably be inconvenient, but the only I'll be able to provide assistance is if you enable debug logging by setting the correct level and providing a log file path, see https://github.com/neovim/node-client#logging I've tested creating a new project & tasks, both succeed on my end. |
Logs:
And here's a Dockerfile to reproduce this issue: FROM archlinux:latest
RUN pacman -Sy --noconfirm
RUN pacman -Sy --noconfirm neovim git nodejs npm curl
RUN npm install -g neovim@latest
RUN mkdir -p /root/.config/nvim /root/.vim/autoload /root/.vim/plugged
ADD ./init.vim /root/.config/nvim/init.vim
ADD ./rc.vim /root/.vimrc
RUN curl -fLo /root/.vim/autoload/plug.vim https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
RUN nvim +PlugInstall +qa
set runtimepath^=~/.vim runtimepath+=~/.vim/after
let &packpath = &runtimepath
source ~/.vimrc
call plug#begin('~/.vim/plugged')
Plug 'romgrk/todoist.nvim', { 'do': ':TodoistInstall' }
call plug#end()
set nocompatible
set updatetime=300
set cmdheight=2 Put these three files in the same directory, then
|
When trying to create or edit a task, or refreshing, I get this error:
I
The text was updated successfully, but these errors were encountered: