Are you trying to write out TODO.vim, or does it already exist on the interwebs? I asked this because it would be nice to read the code and see what is really going on here. Without this, here are a few tips
- You can search the help for any error you see, *:h 484* should tell you give you more information on the first error - First error looks like you're trying to load a file which doesn't exist. From the file path, looks like you have your home path scoped under Vim's runtime path. May wanna check that - 492 is an error when you call some function that doesn't exist. Note, if you define a function in a script with vim9script, you'd have to make that function global by defining it as *def g:FuncName* Hopefully this helps On Thu, Mar 16, 2023 at 5:17 PM Norman Bench <[email protected]> wrote: > > On 3/16/23 07:09, Norman Bench wrote: > > Line1 > > line3 > using unix > -- > -- > You received this message from the "vim_use" maillist. > Do not top-post! Type your reply below the text you are replying to. > For more information, visit http://www.vim.org/maillist.php > > --- > You received this message because you are subscribed to a topic in the > Google Groups "vim_use" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/vim_use/jJfQWQjUtK0/unsubscribe > .orman@norman-desktop:~/vim$ vim filelist > Error detected while processing /home/norman/.vimrc: > line 1: > E484: Can't open file > /usr/local/share/vim/vim90/vimrc_example.vim/home/norman/.vim/vimrc > line 3: > E492: Not an editor command: $HOME/.vim/plugged/TODO.vim/plugin/TODO.vim > Press ENTER or type command to continue > Beginner user...anyway I don't know what i did,and don't know how to fix > it? > > > Thank you! > > Norman Bench > > To unsubscribe from this group and all its topics, send an email to > [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/vim_use/6c42d16c-598e-4bea-b6ba-b7ee2c750c2cn%40googlegroups.com > <https://groups.google.com/d/msgid/vim_use/6c42d16c-598e-4bea-b6ba-b7ee2c750c2cn%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > > > -- > -- > You received this message from the "vim_use" maillist. > Do not top-post! Type your reply below the text you are replying to. > For more information, visit http://www.vim.org/maillist.php > > --- > You received this message because you are subscribed to the Google Groups > "vim_use" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/vim_use/4f216849-9d7f-a7f8-e2f2-43f0db5475dc%40gmail.com > <https://groups.google.com/d/msgid/vim_use/4f216849-9d7f-a7f8-e2f2-43f0db5475dc%40gmail.com?utm_medium=email&utm_source=footer> > . > -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_use" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/CAOmRJrfkkyJHC2JD93unAWUo1vmAmt4C-Fk1aSj7e1c36A4GXw%40mail.gmail.com.
