Coder Social home page Coder Social logo

Comments (6)

ap avatar ap commented on July 18, 2024

And if you remove the Plug line from your .vimrc, the error goes away?

from vim-css-color.

lithammer avatar lithammer commented on July 18, 2024

Hmm, yes, it seems you're correct. I'm using junegunn/vim-plug instead of the usual Vundle to load handle plugins.

And I was able to reproduce with the following setup:

$ cat .vimrc
call plug#begin()
call plug#end()
syntax on

$ tree .vim
.vim
├── README.md
├── after
│   └── syntax
│       ├── css.vim
│       ├── html.vim
│       ├── less.vim
│       ├── sass.vim
│       ├── stylus.vim
│       └── vim.vim
├── autoload
│   ├── css_color.vim
│   └── plug.vim
├── plugged
└── tests
    ├── bench
    ├── example.less
    ├── example.sass
    ├── example.stylus
    └── torture.css

It's funny though, as it seems like it only happens when setting ft=htmldjango via modeline with the combination of vim-plug and vim-css-color.

from vim-css-color.

ap avatar ap commented on July 18, 2024

So if you delete the after/syntax directory and autoload/css_color.vim, the error goes away?

from vim-css-color.

lithammer avatar lithammer commented on July 18, 2024

That's correct, just verified:

$ tree .vim
.vim
├── README.md
├── after
│   └── syntax
│       ├── css.vim
│       ├── html.vim
│       ├── less.vim
│       ├── sass.vim
│       ├── stylus.vim
│       └── vim.vim
├── autoload
│   ├── css_color.vim
│   └── plug.vim
└── tests
    ├── bench
    ├── example.less
    ├── example.sass
    ├── example.stylus
    └── torture.css

$ vim foo.html  # Throws the errors mentioned earlier

$ rm -rf .vim/after/syntax .vim/autoload/css_color.vim

$ vim foo.html  # No errors

from vim-css-color.

ap avatar ap commented on July 18, 2024

Finally spotted the problem. There you go.

For some reason, triggering the autocommand caused Vim to re-source the htmldjango.vim, which would load html.vim again, which is not safe against reloading in mid-flight due to the way that main_syntax gets checked and set, and the HtmlHiLink command gets defined and then deleted. Crazy stuff. Anyway, by abstaining from triggering the autocommand, the whole car crash doesn’t happen.

from vim-css-color.

lithammer avatar lithammer commented on July 18, 2024

Awesome, thank you!

from vim-css-color.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.