Vim html.erb snippets?? snipMate Need a vim tip

前端 未结 7 1027
灰色年华
灰色年华 2021-02-04 08:47

When I\'m in an html.erb file, I get no snipMate snippets.

I would like both HTML and Ruby, or just HTML would be fine, How would I do this?

Would I need to writ

相关标签:
7条回答
  • 2021-02-04 09:14

    You can use an autocmd to set the filetype to html when opening a ".html.erb" file. This could have unwanted side effects for plugins that work for ".erb" files.

    autocmd BufNewFile,BufRead *.html.erb set filetype=html
    

    You can also load more than one set of snippets by using a dotted filetype:

    autocmd BufNewFile,BufRead *.html.erb set filetype=html.eruby
    

    See :help snippet-syntax in the snipMate help for more info.

    0 讨论(0)
  • 2021-02-04 09:19

    You can assign multiple snippets scopes to a single filetype. (I've found that altering the filetype tends to break some syntax highlighting).

    You can check that the filetype for erb files is indeed 'eruby' with:

    :set filetype?
    

    If you're using the maintained fork of snipmate, it looks like you'll want both the eruby.snippets and eruby-rails.snippets from the snipmate-snippets repository (owned by honza, but I don't have enough reputation to link to it here) (see the INSTALL section of the snipmate README for proper setup).

    If you are using the maintained fork, I believe setting g:snipMate.scope_aliases in your .vimrc with the following will work for your example:

    let g:snipMate = {}
    let g:snipMate.scope_aliases = {}
    let g:snipMate.scope_aliases['eruby'] = 'eruby,eruby-rails'
    

    I've added a pull request to snipmate to have their documentation updated.

    0 讨论(0)
  • 2021-02-04 09:19

    With the original snipMate plugin, create a file ~/.vim/ftplugin/erb_snippets.vim and put the following into it:

    silent call ExtractSnipsFile(g:snippets_dir . 'html.snippets', &l:filetype)
    silent call ExtractSnipsFile(g:snippets_dir . 'ruby.snippets', &l:filetype)
    
    0 讨论(0)
  • 2021-02-04 09:21

    I am currently on a promoting tour for UltiSnips on StackOverflow. UltiSnips supports extending other file types, your erb.snippets would look like this:

    extends html, ruby, rails
    
    snippet temp "A snippet only in Erb"
    erb rules ${1}
    endsnippet
    

    A conversion script for snipMate snippets is shipped with UltiSnips, so switching is easy.

    0 讨论(0)
  • 2021-02-04 09:31

    Snippets are stored in directory called snippets somewhere in your ~/.vim folder.

    If you look there, there is usually one file per filetype, there is a c.snippets, a ruby.snippets, so it seems what you have to do is to create an erb.snippets there with what you want.

    Eventually you could copy the content of ruby.snippets and html.snippets into your new erb.snippets.

    Alternatively you can search on github, some people have posted their own erb.snippets configuration. For example, there is a nice collection there : https://github.com/scrooloose/snipmate-snippets

    The best thing would to try first to open a snippet file and look at the syntax, it is pretty easy to create your own snippet depending on what you use the most.

    0 讨论(0)
  • 2021-02-04 09:32

    Jumping on the UltiSnips bandwagon after trying SnipMate for a while. Like SirVer mentioned, having the html, ruby, etc snippets available within an *.erb file was as simple as adding the extend line to the eruby.snippets file.

    0 讨论(0)
提交回复
热议问题